Locked lesson.
About this lesson
In this video, we'll download and use our first data analysis tool: Numpy, which stands for Numerical Python.
Exercise files
Download this lesson’s related exercise files.
Pip Installing and Importing Numpy.docx57 KB Pip Installing and Importing Numpy - Solution.docx
55.7 KB
Quick reference
Numpy Overview - What is it used for
Numpy stands for Numerical Python and it does a lot of the heavy lifting math that we'll use.
When to use
You'll use numpy directly or indirectly from now on.
Instructions
Install Numpy from the terminal. Make sure your virtual environment has been activated and that you are in your /c/data directory; then issue this command:
pip install numpy
To use numpy, add it to our Jupyter Notebook with this line:
import numpy as np
Hints & tips
- pip install numpy
- import numpy as np
Lesson notes are only available for subscribers.