I'm not totally sure what you mean. A column of a DataFrame is a vector, so one 
natural way to convert the column to a string would be to join all of the 
entries using join:

using DataFrames
df = DataFrame(A = 1:10)
join(df[:A], "::")

Is that what you're looking for?

 -- John

On Mar 11, 2014, at 6:35 PM, Jason Solack <jaysol...@gmail.com> wrote:

> So this seems like silly question, but i'm looking to convert a column in a 
> dataframe to a string and I don't see how to do that.
> 
> Any help?
> 
> Thank you!
> 
> Jason

Reply via email to