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

Numpy Array Operations

Numpy array functions [Assignment 2]

Numpy is an open-source python package equipped with a collection of mathematical functions to conduct fast operations on arrays.Below are five Numpy array functions that have been selected for this assignment:

  • Function 1- numpy.transpose(a, axes=None)
  • Function 2- numpy.split(ary, indices_or_sections, axis=0)
  • Function 3- numpy.char.capitalize(a)
  • Function 4- numpy.count_nonzero(a, axis=None, *, keepdims=False)
  • Function 5- numpy.average(a, axis=None, weights=None, returned=False)
!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Attempting to save notebook.. [jovian] Updating notebook "qubalee/numpy-array-operations" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/qubalee/numpy-array-operations
# Importing Numpy
import numpy as np