Mercurial > hg > numerics
view example/iris.py @ 179:f63194f81f7d
stubbing table splitting
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 09 Aug 2016 14:03:33 -0700 |
parents | 4372fb852384 |
children |
line wrap: on
line source
from bokeh.sampledata.iris import flowers from bokeh.plotting import * output_file("iris.html", title="iris.py example") colormap = {'setosa': 'red', 'versicolor': 'green', 'virginica': 'blue'} flowers['color'] = flowers['species'].map(lambda x: colormap[x]) #setting the name kwarg will give this scatter plot a user #friendly id, and the corresponding embed.js will have a nice name #too scatter(flowers["petal_length"], flowers["petal_width"], color=flowers["color"], fill_alpha=0.2, size=10, name="iris") show()