vDataFrame.boxplot¶
In [ ]:
vDataFrame.boxplot(columns: list = [],
ax=None,
**style_kwds,)
Draws a box plot of the input vcolumns.
Parameters¶
| Name | Type | Optional | Description |
|---|---|---|---|
columns | list | ✓ | List of the vcolumns names. If empty, all the numerical vcolumns will be used. |
ax | Matplotlib axes object | ✓ | The axes to plot on. |
**style_kwds | any | ✓ | Any optional parameter to pass to the Matplotlib functions. |
In [8]:
from verticapy.datasets import load_titanic
titanic = load_titanic()
display(titanic)
In [10]:
titanic.normalize()
titanic.boxplot(columns = ["age", "fare"],)
Out[10]:
See Also¶
| vDataFrame.bar | Draws the Bar Chart of the input vcolumns based on an aggregation. |
| vDataFrame[].boxplot | Draws the vcolumn Box Plot. |
| vDataFrame.hist | Draws the Histogram of the input vcolumns based on an aggregation. |
| vDataFrame.pivot_table | Draws the Pivot Table of vcolumns based on an aggregation. |
