Technical requirements
We will run all the experiments and codes in this chapter using Python 3.8. You can download it from the official website, https://www.python.org/downloads/, choosing the 3.8 version.
The examples described in this chapter use the following Python packages:
comet-ml 3.23.0
matplotlib 3.2.2
numpy 1.21.6
pandas 1.3.4
prophet 1.1
scikit-learn 1.0
statsmodels 0.13.2
We have already described the comet-ml, matplotlib, NumPy, pandas, and scikit-learn packages and how to install them in Chapter 1, An Overview of Comet, so please refer to that for further details on installation.
In this section, you will see how to install the other required packages.
Prophet
Prophet is an open source Python package for time series analysis. You can install it as follows:
pip install prophet
For more details about Prophet installation, you can read its official documentation, available at the following link: https://facebook...