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

Assignment 2 - Numpy Array Operations

5 NumPy Functions to Brush Up Your Basics

By Amogh V

NumPy is a library for the Python programming language, adding support for large, multi-dimensional arrays and matrices, along with a large collection of high-level mathematical functions to operate on these arrays. The ancestor of NumPy, Numeric, was originally created by Jim Hugunin with contributions from several other developers. In 2005, Travis Oliphant created NumPy by incorporating features of the competing Numarray into Numeric, with extensive modifications. NumPy is an open-source software and has many contributors.

  • numpy.split
  • numpy.transpose
  • numpy.median
  • numpy.dot
  • numpy.hstack
!pip install jovian --upgrade -q
import jovian
jovian.commit(project='amogh2')
[jovian] Detected Colab notebook... [jovian] Please enter your API key ( from https://jovian.ml/ ): API KEY: ·········· [jovian] Uploading colab notebook to Jovian... [jovian] Committed successfully! https://jovian.ml/amogh19/amogh2

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