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

The Not So Famous Five of Numpy

  • histogram - Computes the histogram of a set of data
  • corrcoef - Return Pearson product-moment correlation coefficients
  • count_nonzero - Counts the number of non-zero values in the array a.
  • ravel - Return a contiguous flattened array.
  • clip - it is used to keep values in an array within an interval.

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] Attempting to save notebook.. [jovian] Please enter your API key ( from https://jovian.ml/ ): API KEY: ········ [jovian] Updating notebook "abhinavyadav7/numpy-array-operations" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/abhinavyadav7/numpy-array-operations

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