From 86d2c2e85c5290614f45276755302a54e915b393 Mon Sep 17 00:00:00 2001 From: Phoebus82 Date: Sat, 10 May 2025 18:02:56 +0200 Subject: [PATCH] Update chapter08.qmd Hello, I am a css student and I noticed an error mentioning the sklearn pypi had been deprecated when pip installing it. Nonetheless importing still works with sklearn. Thanks for considering the change. --- content/chapter08.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/chapter08.qmd b/content/chapter08.qmd index 48a3189..d9ae164 100644 --- a/content/chapter08.qmd +++ b/content/chapter08.qmd @@ -31,7 +31,7 @@ In this chapter, we use the Python package *statsmodels* for classical statistic ## Python code ```{python chapter08install-python} #| eval: false -!pip3 install pandas statsmodels sklearn +!pip3 install pandas statsmodels scikit-learn #sklearn PyPI package deprecated, though still valid for importing ``` ## R code ```{r chapter08install-r}