Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created August 18, 2020 09:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/d1a03d771931f3dd6e97cf57db6f2240 to your computer and use it in GitHub Desktop.
Save amankharwal/d1a03d771931f3dd6e97cf57db6f2240 to your computer and use it in GitHub Desktop.
plt.figure(figsize=(12, 8))
plt.scatter(years, Brazil,
c=c_br,
alpha=0.5,
s = b_normal * 2000)
plt.scatter(years, India,
c=c_fr,
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