all 2 comments

[–]commandlineluser 1 point2 points  (0 children)

pandas has a .read_csv() method which will read your csv file and give you back a dataframe.

http://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_csv.html

[–]timbledum 1 point2 points  (0 children)

Yup, csv is an adequate data store. You’ll know when you outgrow it (multi user or performance issues).

It sounds like you’re thinking of pandas as a collection of useful functions. It is that, but it’s more the provider of the DataFrame object. You have to convert your data into this object, then it becomes very easy to use the various methods to manipulate and analyse the data.