load_iris¶
In [ ]:
load_iris(
schema: str = 'public',
name: str = 'iris')
Ingests the Iris dataset into the Vertica database. This dataset is ideal for classification and clustering functions. If a table with the same name and schema already exists, this function will create a vDataFrame from the input relation.
Parameters¶
| Name | Type | Optional | Description |
|---|---|---|---|
schema | str | ✓ | Schema of the new relation. The default schema is public. |
name | str | ✓ | Name of the new relation. |
Returns¶
vDataFrame : the Iris vDataFrame.
Example¶
In [61]:
from verticapy.datasets import load_iris
load_iris()
Out[61]:
