Open In App

sciPy stats.itemfreq() function | Python

Last Updated : 15 Jan, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

scipy.stats.itemfreq(arr, axis = None) function helps us to calculate the item frequencies. 

Parameters : 
arr : [array_like] input array. 
Results : 2D array with item frequency. 

Code #1: Use of variation()  

Python3




# cumulative frequency
from scipy import stats
import numpy as np 
   
arr = [14, 31, 27, 27, 31, 13, 14, 13
   
print ("Itemfrequency : \n", stats.itemfreq(arr))
   
print ("\n\nBincount : \n", np.bincount(arr))


Output: 

Itemfrequency : 
 [[13  2]
 [14  2]
 [27  2]
 [31  2]]


Bincount : 
 [0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 2]

 


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads