I am using python to read data from .csv file. The .csv file has saved data in one cell(col3 data) separated by commas. I want to put these data in numpy array. The dataset looks like bellow
col1 col2 col3
1 1 1,2,3,4,...
2 2 1,2,3,4,...
3 3 1,2,3,4,...
Can someone help me to read .csv file col3 data and save into numpy array? The data in col3 is really big, one cell has 1080 data. I tried to save these data in separated columns using pandas but since .csv file only has 255 columns, it doesn't save all the data.
Thank you