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

5 Numpy Functions for Beginners

Numpy Functions to use in Practical Applications for beginners

Numpy is a libary within python that allows you to analyze and manipulate arrays. In this notebook we will explore some functions that are helpful for beginners starting out with Numpy.

  • Count nonzero
  • Sum
  • Standard Deviation
  • Median
  • Histogram

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] Updating notebook "amandakatelooney/numpy-array-operations" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/amandakatelooney/numpy-array-operations

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