vDataFrame.head¶
In [ ]:
vDataFrame.head(limit: int = 5)
Returns the vDataFrame head.
Parameters¶
| Name | Type | Optional | Description |
|---|---|---|---|
limit | int | ✓ | Number of elements to display. |
Returns¶
tablesample : An object containing the result. For more information, see utilities.tablesample.
Example¶
In [12]:
from verticapy.datasets import load_titanic
titanic = load_titanic()
titanic.head(limit = 3)
Out[12]:
See Also¶
| vDataFrame.tail | Returns the vDataFrame tail. |
