Skip to content

Commit

Permalink
fixup! Add a placeholder for bokeh engine
Browse files Browse the repository at this point in the history
  • Loading branch information
rs2 committed Nov 14, 2017
1 parent ae1d722 commit 0d784b7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pandas/plotting/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2479,8 +2479,10 @@ class BokehFramePlotMethods(base.FramePlotMethods):
import numpy as np
import bokeh
from bokeh.io import output_notebook, INLINE
output_notebook(hide_banner=True)
pd.set_option('plotting.engine', 'bokeh')
df = pd.DataFrame(np.random.rand(5, 3))
df = pd.DataFrame(np.random.rand(5, 3), columns='foo bar baz'.split())
df.plot()
"""

Expand Down

0 comments on commit 0d784b7

Please sign in to comment.