Locked lesson.
About this lesson
Before we start coding with Numpy, let's discuss what it does and how it works. This video will help you understand why Numpy is so important for data analysis.
Exercise files
Download this lesson’s related exercise files.
Numpy Overview - What is it used for.docx57.1 KB Numpy Overview - What is it used for - Solution.docx
55.4 KB
Quick reference
Numpy Overview - What is it used for
The Numpy Array is the workhorse of Numpy. It is similar to a Python List, and is used to handle data.
When to use
We'll use Numpy Arrays directly and indirectly throughout the rest of the course to deal with all of our data.
Instructions
Numpy arrays are the work horse of Numpy, and Numpy is used by many other data analysis tools such as Pandas, Scipy, and Scikit-Learn.
Hints & tips
- Numpy Arrays look like this: np.array([])
- Numpy Arrays are Faster than regular Python Lists
Lesson notes are only available for subscribers.