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

5 Numpy Functions that you need to know

What is Numpy and why do we need it?

Numpy is a python library that stands for Numerical python. It is mostly used for working with arrays instead of the traditional python lists which are slow especially when working with a large volume of data.

  • np.reshape()
  • np.sort()
  • np.dot()
  • np.arange()
  • np.full()

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.

!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Creating a new project "antavio/numpy-array-operations" [jovian] Committed successfully! https://jovian.ai/antavio/numpy-array-operations

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