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

Assignment 2 - Numpy Array Operations

My 5 Functions

yashg158

NumPy is the library provided by Python to make Numerical analysis easy by using the huge libraby of different types of functions, Which is defined on backend in C++ Language for better execution than direct Python Interpreter.

Here are My functions as follows:

  • nanmedian
  • sort
  • transpose
  • any and all
  • array_split
!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Attempting to save notebook.. [jovian] Please enter your API key ( from https://jovian.ml/ ): API KEY: ········ [jovian] Updating notebook "yashg158/numpy-array-operations" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/yashg158/numpy-array-operations

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