Skip to content

Commit 0d784b7

Browse files
committed
fixup! Add a placeholder for bokeh engine
1 parent ae1d722 commit 0d784b7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/plotting/_core.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2479,8 +2479,10 @@ class BokehFramePlotMethods(base.FramePlotMethods):
24792479
import numpy as np
24802480
import bokeh
24812481
from bokeh.io import output_notebook, INLINE
2482+
2483+
output_notebook(hide_banner=True)
24822484
pd.set_option('plotting.engine', 'bokeh')
2483-
df = pd.DataFrame(np.random.rand(5, 3))
2485+
df = pd.DataFrame(np.random.rand(5, 3), columns='foo bar baz'.split())
24842486
df.plot()
24852487
"""
24862488

0 commit comments

Comments
 (0)