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

All about NaN (Not a Number) in NumPy

green-divider

NumPy (Numerical Python) is a python library used for working with arrays. It also has functions for working in domain of linear algebra, fourier transform, and matrices.

We will be focusing on NaN (not a number), a special value in numpy and the functions that filters NaN values in calculations such as:

nansum
nanmin
nanmmax
nanargmin
nanargmax

!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Attempting to save notebook.. [jovian] Updating notebook "indianvalantine/numpy-array-operations" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/indianvalantine/numpy-array-operations

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