Add missing statsmodels library for chapter 15
parent
156a56cfcd
commit
17f4f27355
|
@ -28,6 +28,7 @@ dependencies:
|
||||||
- requests=2.28 # used only in chapter 19 for REST API queries
|
- requests=2.28 # used only in chapter 19 for REST API queries
|
||||||
- scikit-learn=1.1 # machine learning library
|
- scikit-learn=1.1 # machine learning library
|
||||||
- scipy=1.9 # scientific/technical computing library
|
- scipy=1.9 # scientific/technical computing library
|
||||||
|
- statsmodels=0.13 # used only in chapter 15 for time series analysis
|
||||||
- tqdm=4.64 # a progress bar library
|
- tqdm=4.64 # a progress bar library
|
||||||
- wheel # built-package format for pip
|
- wheel # built-package format for pip
|
||||||
- widgetsnbextension=4.0 # interactive HTML widgets for Jupyter notebooks
|
- widgetsnbextension=4.0 # interactive HTML widgets for Jupyter notebooks
|
||||||
|
|
|
@ -96,3 +96,6 @@ ipywidgets~=8.0.2
|
||||||
|
|
||||||
# Optional: pydot is only used in chapter 10 for tf.keras.utils.plot_model()
|
# Optional: pydot is only used in chapter 10 for tf.keras.utils.plot_model()
|
||||||
pydot~=1.4.2
|
pydot~=1.4.2
|
||||||
|
|
||||||
|
# Optional: statsmodels is only used in chapter 15 for time series analysis
|
||||||
|
statsmodels~=0.13.2
|
||||||
|
|
Loading…
Reference in New Issue