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

Functions in NumPy

5 useful NumPy functions

NumPy is a python library which predominantly is used to perform mathematical operations over arrays. This notebook explains 5 functions of NumPy which are picked randomly. They are:

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

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