vDataFrame.scatter_matrix¶
In [ ]:
vDataFrame.scatter_matrix(columns: list = [],
**style_kwds,)
Draws the scatter matrix of the vDataFrame.
Parameters¶
| Name | Type | Optional | Description |
|---|---|---|---|
columns | list | ✓ | List of the vcolumns names. If empty, all the numerical vcolumns will be used. |
**style_kwds | any | ✓ | Any optional parameter to pass to the Matplotlib functions. |
In [6]:
from verticapy.datasets import load_iris
iris = load_iris()
display(iris)
In [7]:
iris.scatter_matrix()
See Also¶
| vDataFrame.scatter | Draws the Scatter Plot of the input vcolumns. |
