Version: 11.0

    Show / Hide Table of Contents

    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.

      pip install numpy
      
    • Matplotlib - Plotting library. Use this to produce graphs.

      pip install matplotlib
      
    • Pandas - Powerful data structures. Can be used to create tables.

      pip install pandas
      

    Back to top