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

Methods to play with numpy

An interesting topic to play with the numbers is the python inbulit library of numpy. this library in python has functions which help you to work in domains related to arrays, linear algebra, statistics,forier transforms and matrices. here is a list of few functions which can be used in each of the domain for handling the data.

  • stack()
  • sort()
  • convolve()
  • matmul()
  • base_repr()
!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Attempting to save notebook.. [jovian] Updating notebook "aashutosh-chaubey/numpy-array-operations" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/aashutosh-chaubey/numpy-array-operations

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