Skip to content

Commit

Permalink
fix variable names issues
Browse files Browse the repository at this point in the history
  • Loading branch information
pajanne committed Mar 27, 2017
1 parent 529e833 commit 64fa8f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions solutions/ex4_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
mpyplot.xlabel('Life Expectancy')
mpyplot.ylabel('GDP per Capita')
mpyplot.title('GapMinder world data over 50 years')
mpyplot.scatter(life_expectancy_data_old, gdp_per_capita_data_1957, c='b', label='1957')
mpyplot.scatter(life_expectancy_data_new, gdp_per_capita_data_2002, c='g', label='2007')
mpyplot.scatter(life_expectancy_data_old, gdp_per_capita_data_old, c='b', label='1957')
mpyplot.scatter(life_expectancy_data_new, gdp_per_capita_data_new, c='g', label='2007')
mpyplot.legend()
mpyplot.grid(True)
mpyplot.show()

0 comments on commit 64fa8f3

Please sign in to comment.