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

NumPy

Some Numpy functions

NumPy (or Numpy) is a core Library for Python for numerical computing in Python. NumPy arrays provide much more efficient storage and data operations as the arrays grow larger in size. NumPy arrays form the core of nearly the entire ecosystem of data science tools in Python. Numpy provides a high-performance multidimensional array object and tools for working with these arrays.Numpy is also incredibly fast, as it has bindings to C and C++ libraries.

The functions chosen are

  • np.where
  • np.pad
  • np.diag
  • np.argmax
  • np.unique
!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Attempting to save notebook.. [jovian] Updating notebook "venkatesh-vran/numpy-array-operations" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/venkatesh-vran/numpy-array-operations
import numpy as np