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

5 Numpy functions to make you a better data analyst

Numpy at it's core is a well optimized C code python library. It sets the standard of numerical and array computing today, as it is fast and powerful. Here we'll take a look at 5 numpy functions that can make you a better data analyst.

  • np.rot90
  • np.place
  • np.ndarray.flatten
  • np.column_stack
  • np.sin

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..

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