Learning Objective: Learn how to find and use numerical algorithms in the SciPy package.
In [1]:
%matplotlib inline
from matplotlib import pyplot as plt
import numpy as np
The SciPy framework builds on top NumPy and provides a large number of numerical algorithms for working with data. Some of the topics that SciPy covers are:
This notebook is not a complete tour of SciPy. Rather it focuses on the most important parts of the package for processing data.
In many cases, you will want to import specific names from scipy
subpackages. However, as a start, it is helpful to do the following import:
In [2]:
import scipy as sp
One of the most important skills in data science is to be able to find Python functions and classes in a module and learn how to use them yourself. Here are some recommended steps on how to go about this:
?
to explore it.