VOOZH about

URL: https://www.geeksforgeeks.org/python/scipy-stats-cumfreq-function-python/

⇱ sciPy stats.cumfreq() function | Python - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

sciPy stats.cumfreq() function | Python

Last Updated : 15 Jan, 2022

scipy.stats.cumfreq(a, numbins, defaultreallimits, weights) works using the histogram function and calculates the cumulative frequency histogram. It includes cumulative frequency binned values, width of each bin, lower real limit, extra points. 

Parameters : 
arr : [array_like] input array. 
numbins : [int] number of bins to use for the histogram. [Default = 10] 
defaultlimits : (lower, upper) range of the histogram. 
weights : [array_like] weights for each array element. 
Results : 
- cumulative frequency binned values 
- width of each bin 
- lower real limit 
- extra points. 

Code #1: 


Output: 
Array element : [1, 3, 27, 2, 5, 13] 

cumulative frequency : [ 4. 5. 5. 6.]
Lower Limit : -3.33333333333
bin size : 8.66666666667
extra-points : 0

 

Code #2: 


Output: 
Array element : [1, 3, 27, 2, 5, 13] 

cumfreqs : [ 1.6 7.6 7.6 7.7]
lowlim : -3.33333333333
binsize : 8.66666666667
extrapoints : 0

 
Comment