DataFrame.cumProd
Return cumulative product over a DataFrame or Series axis.
danfo.DataFrame.cumProd(options) [source]
Parameters | Type | Description | Default |
---|---|---|---|
options | Object | axis: 0 for row and 1 for column inplace: Boolean indicating whether to perform the operation inplace or not. Defaults to false | {axis: 1, inplace: false} |
Examples
Cumulative product of elements along default axis 1 (column)
Cumulative product of elements along column axis (1)
Last updated