Skip to content

Commit 65cecdd

Browse files
Encore une erreur de nom de colonne (#192)
* maj nom colonne * Automated changes * Automated changes Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 81b7023 commit 65cecdd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/course/modelisation/0_preprocessing.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -458,13 +458,13 @@ La **normalisation** est l'action de transformer les données de manière à obt
458458

459459
**Exercice 4 : Normalisation**
460460

461-
1. Normaliser la variable `median_earnings_2010_dollars` (ne pas écraser les valeurs !) et regarder l'histogramme avant/après normalisation.
461+
1. Normaliser la variable `Median_Household_Income_2019` (ne pas écraser les valeurs !) et regarder l'histogramme avant/après normalisation.
462462

463463
```{python normalisation}
464464
#| include: false
465465
#| echo: false
466466
467-
# 1. Normalisation de median_earnings_2010_dollars et histogrammes
467+
# 1. Normalisation de Median_Household_Income_2019 et histogrammes
468468
scaler = preprocessing.Normalizer().fit(df2.dropna(how = "any").head(1000))
469469
X1 = scaler.transform(df2.dropna(how = "any").head(1000))
470470

0 commit comments

Comments
 (0)