Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

np.percentile

dataset = np.array([49, 84, 57, 79, 90, 43, 87])
       
np.percentile(dataset, 25, axis=1) # default is axis=1
np.percentile(dataset, 50)
np.percentile(dataset, 75)
Source by numpy.org #
 
PREVIOUS NEXT
Tagged:
ADD COMMENT
Topic
Name
6+1 =