Skip to content

Instantly share code, notes, and snippets.

@liannewriting
Created August 19, 2021 13:37
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 liannewriting/b83ea275412f4d6083c2ac51035882a6 to your computer and use it in GitHub Desktop.
Save liannewriting/b83ea275412f4d6083c2ac51035882a6 to your computer and use it in GitHub Desktop.
python data visualization libraries list
from plotnine import ggplot, geom_point, aes
ggplot(tips, aes('total_bill', 'tip')) + geom_point(color='blue')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment