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/d7982ab51c9848da931931c5fafd0b43 to your computer and use it in GitHub Desktop.
Save liannewriting/d7982ab51c9848da931931c5fafd0b43 to your computer and use it in GitHub Desktop.
python data visualization libraries list
from bokeh.plotting import figure, output_notebook, show
output_notebook()
p = figure()
p.circle(x=tips['total_bill'], y=tips['tip'])
p.xaxis.axis_label = "total_bill"
p.yaxis.axis_label = "tip"
show(p)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment