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

Assignment 2 - Numpy Array Operations

five functions from numpy package which I never used

about numpy:

NumPy is the fundamental package for scientific computing in Python. It is a Python library that provides a multidimensional array object, various derived objects (such as masked arrays and matrices), and an assortment of routines for fast operations on arrays, including mathematical, logical, shape manipulation, sorting, selecting, I/O, discrete Fourier transforms, basic linear algebra, basic statistical operations, random simulation and much more

Write a short introduction about Numpy and list the chosen functions.

  • np.sort()
  • function 2
  • function 3
  • function 4
  • function 5

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] Creating a new project "abhi397/numpy-array-operations" [jovian] Committed successfully! https://jovian.ai/abhi397/numpy-array-operations

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