For this chapter, we will mostly make use of the pandas library for data manipulation, which provides R like data structures, such as Series and DataFrame objects, for storing, organizing, and manipulating data. We will also use the Bokeh data visualization library in the final recipe of this chapter. These libraries can be installed using your favorite package manager, such as pip:
python3.8 -m pip install pandas bokeh
We will also make use of the NumPy and SciPy packages.
The code for this chapter can be found in the Chapter 06 folder of the GitHub repository at https://github.com/PacktPublishing/Applying-Math-with-Python/tree/master/Chapter%2006.
Check out the following video to see the Code in Action: https://bit.ly/2OQs6NX.