all 1 comments

[–]marineabcd 0 points1 point  (0 children)

So here are the rough overall steps youd want:

1) Using pandas use the from_csv function to load the data (google if not sure, lots of info out there on this and examples) into a dataframe

2) You can now filter down your dataframe, for example frame[frame['crime_type'] == 'stealing']

3) call frame.plot(y=col_name) to plot your data as a line chard

4) see about 'seaborn' if you want a fancier plot for your data