Created
March 18, 2020 12:44
-
-
Save AntonioMarsella/06fec1c8b2db2085144ab6f2a3416b95 to your computer and use it in GitHub Desktop.
Using Pandas Dataframe in Bokeh with flowers (iris dataset)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from bokeh.io import output_file, show | |
from bokeh.plotting import figure | |
# Flowers is a Pandas Dataframe | |
from bokeh.sampledate.iris import flowers | |
plot = figure() | |
plot.circle(flowers['petal_length'], flowers['sepal_length'], size=10) | |
output_file('pandas.html') | |
show(plot) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment