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

5 Useful NumPy functions

I have chosen the following 5 functions-

Numpy stands for Numerical Python. Numpy is an open source library which is used for numerical operations with respect to linear algebra and matrices. It is created by Travis Oliphant in 2005.

  • function 1 = np.split()
  • function 2 = np.unique()
  • function 3 = np.transpose()
  • function 4 = np.maximum()
  • function 5 = np.sort()
!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Attempting to save notebook.. [jovian] Please enter your API key ( from https://jovian.ml/ ): API KEY: ········ [jovian] Updating notebook "ankit114211/numpy-array-operations" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/ankit114211/numpy-array-operations

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