bokeh export working

In [3]:
from bokeh.io import show, output_notebook
from bokeh.charts import Bar
import pandas as pd
In [4]:
output_notebook()
Loading BokehJS ...
In [5]:
data = pd.DataFrame({'x': [1,2,3], 'y': [12,7,8]})
show(Bar(data, label='x', values='y'))