In [1]:
import pandas
In [2]:
from bokeh.functional import *
In [3]:
df = pandas.read_csv("auto-mpg2.csv")
In [4]:
g = ggplot(df, aes("displ", "mpg", color="green")) + facet_grid("cyl", "origin") + geom_point()
setting facet: <bokeh.ggplot.Facet object at 0x10ca2fd70>
added geom: <bokeh.ggplot.GeomPoint object at 0x10ca2fcb0>
In [5]:
g.to_html(notebook=True)

Bokeh Sources

Plots