Skip to content

Commit 5c3b913

Browse files
committed
Added missing import in boxplot_frame_groupby example
1 parent cb35d8a commit 5c3b913

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pandas/plotting/_core.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,7 @@ def boxplot_frame_groupby(
548548
Examples
549549
--------
550550
>>> import itertools
551+
>>> from pandas.plotting import boxplot_frame_groupby
551552
>>> tuples = [t for t in itertools.product(range(1000), range(4))]
552553
>>> index = pd.MultiIndex.from_tuples(tuples, names=['lvl0', 'lvl1'])
553554
>>> data = np.random.randn(len(index),4)

0 commit comments

Comments
 (0)