I stored 2D numpy arrays into a pandas dataframe, which I stored into a csv file. While reading the csv file, I am struggling to get back my 2D numpy array as they are stored as type string... How could I get the numpy array that is inside the string?
For example I have '[1.34 5.43]' and I want to convert to [1.34 5.43]. Any way to convert numpy array interpreted as string into numpy array?
SOLUTION: This was the solution How to convert string representation of list to a list?