w3resource

Pandas DataFrame: cumsum() function

DataFrame - cumsum() function

The cumsum() function returns cumulative sum over a DataFrame or Series axis.

Syntax:

DataFrame.cumsum(self, axis=None, skipna=True, *args, **kwargs)

Parameters:

Name Description Type/Default Value Required / Optional
axis         The index or the name of the axis. 0 is equivalent to None or ‘index’. {0 or ‘index’, 1 or ‘columns’}
Default Value: 0
Required
skipna  Exclude NA/null values. If an entire row/column is NA, the result will be NA. boolean
Default Value: True
Required
*args, **kwargs : Additional keywords have no effect but might be accepted for compatibility with NumPy.   Required

Returns: Series or DataFrame

Example:


Download the Pandas DataFrame Notebooks from here.

Previous: DataFrame - cumprod() function
Next: DataFrame - describe() function



Follow us on Facebook and Twitter for latest update.