Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created August 18, 2020 09:26
Embed
What would you like to do?
plt.figure(figsize=(12, 8))
plt.scatter(years, Brazil,
color='darkblue',
alpha=0.5,
s = b_normal * 2000)
plt.scatter(years, India,
color='purple',
alpha=0.5,
s = i_normal * 2000,
)
plt.xlabel("Years", size=14)
plt.ylabel("Number of immigrants", size=14)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment