I have a .csv full of GDP data by year for different countries. I want read the file and plot the data of only a select few of the countries in the .csv file. So far I have:
data = np.genfromtxt('The_data.csv', dtype=str, delimiter=',', names=None, usecols=np.arange(0,17))
which I think lets me read the data. How do I use matplotlib to generate a graph of GDP change over the years, but only of certain countries?
or use CSV module https://docs.python.org/2/library/csv.html