Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
i_normal = India / India.max()
b_normal = Brazil / Brazil.max()
years = list(range(1980, 2014))
import matplotlib.pyplot as plt
plt.figure(figsize=(14, 8))
plt.scatter(years, India, color='blue')
plt.scatter(years, Brazil, color='orange')
plt.xlabel("Years", size=14)
plt.ylabel("Number of immigrants", size=14)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment