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

Five NumPy Functions

NumPy function

NumPy is a python library used for working with arrays.
NumPy stands for Numerical Python.
It also has functions for working in domain of linear algebra, fourier transform, and matrices.
The NumPy library (along with SciPy and MatPlotLib) turns it into a more robust environment for serious scientific computing
NumPy contains a large number of various mathematical operations.

  • Trignometric function
  • Adding and removing elements in array
  • Numpy.flip
  • Numpy.char.capitalize
  • Numpy.maximum
!pip install jovian --upgrade -q
WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. You should consider upgrading via the '/opt/conda/bin/python3.7 -m pip install --upgrade pip' command.
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Attempting to save notebook.. [jovian] Detected Kaggle notebook... [jovian] Please enter your API key ( from https://jovian.ml/ ): API KEY: ········ [jovian] Uploading notebook to https://jovian.ml/ashlinjacob23/numpy-array-operations

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