Python | Pandas dataframe.cumprod() Last Updated : 16 Nov, 2018 Summarize Comments Improve Suggest changes Share Like Article Like Report Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas dataframe.cumprod() is used to find the cumulative product of the values seen so far over any axis. Each cell is populated with the cumulative product of the values seen so far. Syntax: DataFrame.cumprod(axis=None, skipna=True, *args, **kwargs) Parameters: axis : {index (0), columns (1)} skipna : Exclude NA/null values. If an entire row/column is NA, the result will be NA Returns: cumprod : Series Example #1: Use cumprod() function to find the cumulative product of the values seen so far along the index axis. Python3 # importing pandas as pd import pandas as pd # Creating the dataframe df = pd.DataFrame({"A":[5, 3, 6, 4], "B":[11, 2, 4, 3], "C":[4, 3, 8, 5], "D":[5, 4, 2, 8]}) # Print the dataframe df Output : Now find the cumulative product of the values seen so far over the index axis Python3 1== # To find the cumulative prod df.cumprod(axis = 0) Output : Example #2: Use cumprod() function to find the cumulative product of the values seen so far along the column axis. Python3 # importing pandas as pd import pandas as pd # Creating the dataframe df = pd.DataFrame({"A":[5, 3, 6, 4], "B":[11, 2, 4, 3], "C":[4, 3, 8, 5], "D":[5, 4, 2, 8]}) # cumulative product along column axis df.cumprod(axis = 1) Output : Example #3: Use cumprod() function to find the cumulative product of the values seen so far along the index axis in a data frame with NaN value present in dataframe. Python3 # importing pandas as pd import pandas as pd # Creating the dataframe df = pd.DataFrame({"A":[5, 3, None, 4], "B":[None, 2, 4, 3], "C":[4, 3, 8, 5], "D":[5, 4, 2, None]}) # To find the cumulative product df.cumprod(axis = 0, skipna = True) Output : The output is a dataframe with cells containing the cumulative product of the values seen so far along the index axis. Any Nan value in the dataframe is skipped. Comment More infoAdvertise with us Next Article Python | Pandas dataframe.applymap() S Shubham__Ranjan Follow Improve Article Tags : Technical Scripter Python Python-pandas Python pandas-dataFrame Pandas-DataFrame-Methods +1 More Practice Tags : python Similar Reads Python | Pandas dataframe.cumsum() Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas dataframe.cumsum() is used to find the cumulative sum value over any axis. Each 2 min read Python | Pandas dataframe.cummin() Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas dataframe.cummin() is used to find the cumulative minimum value over any axis. 2 min read Python | Pandas dataframe.cummax() Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas dataframe.cummax() is used to find the cumulative maximum value over any axis. 2 min read Python | Pandas dataframe.applymap() Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Dataframe.applymap() method applies a function that accepts and returns a scalar to ev 2 min read Python | Pandas dataframe.pow() Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas dataframe.pow() function calculates the exponential power of dataframe and othe 3 min read Python | Pandas dataframe.mul() Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier.Pandas dataframe.mul() function return multiplication of dataframe and other element- w 2 min read Like