Currently when I import a data file, I create a list, and then use the
Code:
numpy.array(lst)
method to convert the list into a numpy array.
However, ideally I would like to not have to use a transition data type before converting it to a numpy array (and import the .csv file directly into a numpy array).
I have tried the
Code:
numpy.genfromtext()
method, however, that does not keep the inherent matrix structure I am attempting...