Using MatPlotLib, I was able to import data from the US Census, comparing New York's population growth to Florida's. The program works, but I want to change the y-axis numbers to reflect the growth in millions. Any idea how I can accomplish this?
fig=plt.figure(figsize=(18, 16), dpi= 100, facecolor='w', edgecolor='k')
plt.plot(content.loc[10, ['1910_POPULATION', '1920_POPULATION',
'1930_POPULATION', '1940_POPULATION', '1950_POPULATION',
'1960_POPULATION', '1970_POPULATION', '1980_POPULATION','1990_POPULATION',
'2000_POPULATION']])
plt.plot(content.loc[33, ['1910_POPULATION', '1920_POPULATION',
'1930_POPULATION', '1940_POPULATION', '1950_POPULATION',
'1960_POPULATION', '1970_POPULATION', '1980_POPULATION','1990_POPULATION',
'2000_POPULATION']])
plt.show()