pandas.core.groupby.DataFrameGroupBy.boxplot¶
Make box plots from DataFrameGroupBy data.
- param grouped
Grouped DataFrame
- param subplots
- bool
False
- no subplots will be usedTrue
- create a subplot for each group
- param column
- column name or list of names, or vector
Can be any valid input to groupby
- param fontsize
int or string
- param rot
label rotation angle
- param grid
Setting this to True will show the grid
- param ax
Matplotlib axis object, default None
- param figsize
A tuple (width, height) in inches
- param layout
- tuple (optional)
(rows, columns) for the layout of the plot
- param sharex
- bool, default False
Whether x-axes will be shared among subplots
New in version 0.23.1.
- param sharey
- bool, default True
Whether y-axes will be shared among subplots
New in version 0.23.1.
All other plotting keyword arguments to be passed to matplotlib’s boxplot function
- return
dict of key/value = group key/DataFrame.boxplot return value or DataFrame.boxplot return value in case subplots=figures=False
Warning
This feature is currently unsupported by Intel Scalable Dataframe Compiler