I am working with a dataframe, that contains arrays. Upon read_cvs, pandas seems to be storing my vetors in str mode. Like this:
df['column'].iloc[3]
>>>'[50.6402809, 4.6667145]'
type(df['column'].iloc[3])
>>> str
How can I convert the entire column to array? Like so:
df['column'].iloc[3]
>>>[50.6402809, 4.6667145]
type(df['column'].iloc[3])
>>> array