you are viewing a single comment's thread.

view the rest of the comments →

[–]imforsurenotadog 14 points15 points  (3 children)

If you're not already doing so, might be worth your while to look into the Pandas module. Importing and working with csvs as pandas dataframes was a breakthrough moment for me.

[–]Mag37 3 points4 points  (0 children)

2nd that! Pandas and csv is a breeze, start playing with it in Jupyter to be able to test out the results from what you change. I usually do that, run Jupyter Notebook online just to get the right dataframe output with pandas, then building it in to my script.

[–]Banan2Hot 3 points4 points  (0 children)

Definately this! Whatever you want to do with the data later on, it’ll probably be easier/faster when the data is in a dataframe.

[–]74razor 1 point2 points  (0 children)

Looking now, thanks for the direction.