Learn practical skills, build real-world projects, and advance your career

5 useful numpy statistics function you must use

Numpy is the fundamental package for scienctific computing in python programming language .

The most useful functions excluding NaN are given below:

  • nanmin
  • nanmax
  • nanmean
  • nanmedian
  • nanpercentile

The recommended way to run this notebook is to click the "Run" button at the top of this page, and select "Run on Binder". This will run the notebook on mybinder.org, a free online service for running Jupyter notebooks.

Let's begin by importing Numpy and listing out the functions covered in this notebook.

import numpy as np
# List of functions explained 
# function1 = np.nanmin()
# function2 = np.nanmax()
# function3 = np.mean()
# function4 = np.nanmedian()
# function5 = np.nanpercentile()

Function 1 - np.nanmin()

This function helps us to find minimum value of an array .