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

Numpy array functions

5 functions:

Numpy is a module that offers a vast list of operations on arrays or vectors. This is a nessicity for data analysis as it makes working with data arrays easier.

  • np.reshape
  • np.transpose
  • np.vstack
  • np.unique
  • np.split

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] Attempting to save notebook..

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