Additional Packages
One of the benefits of using Python is the vast number of packages at your disposal. Python packages are available for fast data processing, graphs, tables, signal processing, machine learning and more. The following packages will be very useful for manipulating data extracted from MASTA.
Packages
NumPy - Fundamental for any scientific programming.
py -m pip install numpy
SciPy - An extension to NumPy with even more fundamental operations.
py -m pip install scipy
Matplotlib - Plotting library. Use this to produce graphs.
py -m pip install matplotlib
Pandas - Powerful data structures. Can be used to create tables.
py -m pip install pandas