vDataFrame.prod¶
In [ ]:
vDataFrame.prod(columns: list = [], **agg_kwds)
Aggregates the vDataFrame using 'product'.
Parameters¶
| Name | Type | Optional | Description |
|---|---|---|---|
columns | list | ✓ | List of the vcolumns names. If empty, all the numerical vcolumns will be used. |
**agg_kwds | any | ✓ | Any optional parameter to pass to the Aggregate function. |
Returns¶
tablesample : An object containing the result. For more information, see utilities.tablesample.
Example¶
In [47]:
from verticapy.datasets import load_market
market = load_market()
display(market)
In [48]:
market.prod(columns = ["Price"])
Out[48]:
See Also¶
| vDataFrame.aggregate | Computes the vDataFrame input aggregations. |
