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

5 Numpy Libraries

Numpy is a python library that has it's data structure as an array.It can be used to perform a number of mathematical operations on arrays such as trigonometric, statistical, and algebraic routines.Here are few basic numpy function.

  • numpy.char.isnumeric (arr)
  • numpy.stack(arr, axis)
  • numpy.percentile(arr, n, axis=None, out=None)
  • numpy.trim_zeros(arr, trim)
  • numpy.linalg.inv(arr)

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.. [jovian] Updating notebook "alayandeay98/numpy-array-operations" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/alayandeay98/numpy-array-operations

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