Updated On : Jul-20,2020 Time Investment : ~10 mins

Learning Numpy - Simple Tutorial For Beginners - NumPy - Statistical Functions Part 16

NumPy has quite a few useful statistical functions for finding minimum, maximum, percentile standard deviation and variance, etc. from the given elements in the array. The functions are explained as follows −

numpy.amin() and numpy.amax()

These functions return the minimum and the maximum from the elements in the given array along the specified axis.

import numpy as np
a = np.array([[3,7,5],[8,4,3],[2,4,9]])
print ('Our array is:')
print (a)
Our array is:
[[3 7 5]
 [8 4 3]
 [2 4 9]]
print ('Applying amin() function:')
print (np.amin(a,1) )
Applying amin() function:
[3 3 2]
print ('Applying amin() function again:')
print (np.amin(a,0) )
Applying amin() function again:
[2 4 3]
print ('Applying amax() function:')
print (np.amax(a))
Applying amax() function:
9
print ('Applying amax() function again:')
print (np.amax(a, axis = 0))
Applying amax() function again:
[8 7 9]

numpy.ptp()

The numpy.ptp() function returns the range (maximum-minimum) of values along an axis.

import numpy as np
a = np.array([[3,7,5],[8,4,3],[2,4,9]])
print ('Our array is:')
print (a)
Our array is:
[[3 7 5]
 [8 4 3]
 [2 4 9]]
print ('Applying ptp() function:')
print (np.ptp(a) )
Applying ptp() function:
7
print ('Applying ptp() function along axis 1:')
print (np.ptp(a, axis = 1))
Applying ptp() function along axis 1:
[4 5 7]
print ('Applying ptp() function along axis 0:')
print (np.ptp(a, axis = 0))
Applying ptp() function along axis 0:
[6 3 6]

numpy.percentile()

Percentile (or a centile) is a measure used in statistics indicating the value below which a given percentage of observations in a group of observations fall. The function numpy.percentile() takes the following arguments.

numpy.percentile(a, q, axis)
Argument Description
a Input array
q The percentile to compute must be between 0-100
axis The axis along which the percentile is to be calculated

Examples

import numpy as np
a = np.array([[30,40,70],[80,20,10],[50,90,60]])
print ('Our array is:')
print (a)
Our array is:
[[30 40 70]
 [80 20 10]
 [50 90 60]]
print ('Applying percentile() function:')
print (np.percentile(a,50))
Applying percentile() function:
50.0
print ('Applying percentile() function along axis 1:')
print (np.percentile(a,50, axis = 1))
Applying percentile() function along axis 1:
[40. 20. 60.]
print ('Applying percentile() function along axis 0:')
print (np.percentile(a,50, axis = 0))
Applying percentile() function along axis 0:
[50. 40. 60.]

numpy.median()

Median is defined as the value separating the higher half of a data sample from the lower half. The numpy.median() function is used as shown in the following program.

import numpy as np
a = np.array([[30,65,70],[80,95,10],[50,90,60]])
print ('Our array is:')
print (a)
Our array is:
[[30 40 70]
 [80 20 10]
 [50 90 60]]
print ('Applying median() function:')
print (np.median(a))
Applying median() function:
50.0
print ('Applying median() function along axis 0:')
print (np.median(a, axis = 0))
Applying median() function along axis 0:
[50. 40. 60.]
print ('Applying median() function along axis 1:')
print (np.median(a, axis = 1))
Applying median() function along axis 1:
[40. 20. 60.]

numpy.mean()

Arithmetic mean is the sum of elements along an axis divided by the number of elements. The numpy.mean() function returns the arithmetic mean of elements in the array. If the axis is mentioned, it is calculated along it.

import numpy as np
a = np.array([[1,2,3],[3,4,5],[4,5,6]])
print ('Our array is:')
print (a)
Our array is:
[[30 40 70]
 [80 20 10]
 [50 90 60]]
print ('Applying mean() function:')
print (np.mean(a))
Applying mean() function:
50.0
print ('Applying mean() function along axis 0:')
print (np.mean(a, axis = 0) )
Applying mean() function along axis 0:
[53.33333333 50.         46.66666667]
print ('Applying mean() function along axis 1:')
print (np.mean(a, axis = 1))
Applying mean() function along axis 1:
[46.66666667 36.66666667 66.66666667]

numpy.average()

Weighted average is an average resulting from the multiplication of each component by a factor reflecting its importance. The numpy.average() function computes the weighted average of elements in an array according to their respective weight given in another array. The function can have an axis parameter. If the axis is not specified, the array is flattened.

Considering an array [1,2,3,4] and corresponding weights [4,3,2,1], the weighted average is calculated by adding the product of the corresponding elements and dividing the sum by the sum of weights.

Weighted average = (14+23+32+41)/(4+3+2+1)

import numpy as np
a = np.array([1,2,3,4])
print ('Our array is:')
print (a)
Our array is:
[1 2 3 4]
print ('Applying average() function:')
print (np.average(a))
### this is same as mean when weight is not specified 
wts = np.array([4,3,2,1])
Applying average() function:
2.5
print ('Applying average() function again:')
print (np.average(a,weights = wts))
Applying average() function again:
2.0
# Returns the sum of weights, if the returned parameter is set to True. 
print ('Sum of weights')
print (np.average([1,2,3, 4],weights = [4,3,2,1], returned = True))
Sum of weights
(2.0, 10.0)

In a multi-dimensional array, the axis for computation can be specified.

import numpy as np
a = np.arange(6).reshape(3,2)
print ('Our array is:')
print (a)
Our array is:
[[0 1]
 [2 3]
 [4 5]]
print ('Modified array:')
wt = np.array([3,5])
print (np.average(a, axis = 1, weights = wt))
Modified array:
[0.625 2.625 4.625]
print ('Modified array:')
print (np.average(a, axis = 1, weights = wt, returned = True))
Modified array:
(array([0.625, 2.625, 4.625]), array([8., 8., 8.]))

Standard Deviation

Standard deviation is the square root of the average of squared deviations from mean. The formula for standard deviation is as follows −

std = sqrt(mean(abs(x - x.mean())**2))

If the array is [1, 2, 3, 4], then its mean is 2.5. Hence the squared deviations are [2.25, 0.25, 0.25, 2.25] and the square root of its mean divided by 4, i.e., sqrt (5/4) is 1.1180339887498949.

import numpy as np
print (np.std([1,2,3,4]))
1.118033988749895

Variance

Variance is the average of squared deviations, i.e.,

mean(abs(x - x.mean())**2)

In other words, the standard deviation is the square root of variance.

import numpy as np
print (np.var([1,2,3,4]))
1.25
Dolly Solanki  Dolly Solanki

YouTube Subscribe Comfortable Learning through Video Tutorials?

If you are more comfortable learning through video tutorials then we would recommend that you subscribe to our YouTube channel.

Need Help Stuck Somewhere? Need Help with Coding? Have Doubts About the Topic/Code?

When going through coding examples, it's quite common to have doubts and errors.

If you have doubts about some code examples or are stuck somewhere when trying our code, send us an email at coderzcolumn07@gmail.com. We'll help you or point you in the direction where you can find a solution to your problem.

You can even send us a mail if you are trying something new and need guidance regarding coding. We'll try to respond as soon as possible.

Share Views Want to Share Your Views? Have Any Suggestions?

If you want to

  • provide some suggestions on topic
  • share your views
  • include some details in tutorial
  • suggest some new topics on which we should create tutorials/blogs
Please feel free to contact us at coderzcolumn07@gmail.com. We appreciate and value your feedbacks. You can also support us with a small contribution by clicking DONATE.


Subscribe to Our YouTube Channel

YouTube SubScribe

Newsletter Subscription