Sunday, December 7, 2025
HomeLanguagesCumulative percentage of a column in Pandas – Python

Cumulative percentage of a column in Pandas – Python

Cumulative Percentage is calculated by the mathematical formula of dividing the cumulative sum of the column by the mathematical sum of all the values and then multiplying the result by 100. This is also applicable in Pandas Data frames.
Here, the pre-defined cumsum() and sum() functions are used to compute the cumulative sum and sum of all the values of a column.
Syntax: 

df[cum_percent] = 100 * (df[‘column_name’].cumsum()/df[‘column_name’].sum()) 
 

Example 1:

Python3




import pandas as pd
import numpy as np
  
# Create a DataFrame
df1 = {
     'Name':['abc','bcd','cde','def','efg','fgh','ghi'],
   'Math_score':[52,87,49,74,28,59,48]}
  
df1 = pd.DataFrame(df1, columns=['Name','Math_score'])
 
# Computing Cumulative Percentage
df1['cum_percent'] = 100*(df1.Math_score.cumsum() / df1.Math_score.sum())
 
df1


 

 

Output: 
 

 

 

 

 

Example 2: 

 

Python3




import pandas as pd
import numpy as np
  
# Create a DataFrame
df1 = {
     'Name':['abc','bcd','cde','def','efg','fgh','ghi'],
   'Math_score':[52,87,49,74,28,59,48],
  'Eng_score':[34,67,25,89,92,45,86]
}
  
df1 = pd.DataFrame(df1,columns=['Name','Math_score','Eng_score'])
 
# Computing cumulative Percentage
df1['Eng_cum_percent'] = (df1.Eng_score.cumsum() / df1.Eng_score.sum()) * 100
 
df1


 

 

Output: 
 

 

 

RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32429 POSTS0 COMMENTS
Milvus
103 POSTS0 COMMENTS
Nango Kala
6803 POSTS0 COMMENTS
Nicole Veronica
11945 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12015 POSTS0 COMMENTS
Shaida Kate Naidoo
6934 POSTS0 COMMENTS
Ted Musemwa
7189 POSTS0 COMMENTS
Thapelo Manthata
6883 POSTS0 COMMENTS
Umr Jansen
6867 POSTS0 COMMENTS