Skip to content

Commit f91c839

Browse files
minor aesthetic improvement -- keep coln ordering the same
1 parent 2f32135 commit f91c839

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/clustering.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,9 @@ Later in this chapter, we will return to the original `penguins` data to see how
179179
in the clustering pipeline.
180180
```{r 10-toy-example-data, echo = FALSE, message = FALSE, warning = FALSE}
181181
penguins_standardized <- penguins |>
182-
mutate(flipper_length_standardized = (flipper_length_mm - mean(flipper_length_mm))/sd(flipper_length_mm)) |>
183182
mutate(bill_length_standardized = (bill_length_mm - mean(bill_length_mm))/sd(bill_length_mm)) |>
184-
select(flipper_length_standardized, bill_length_standardized)
183+
mutate(flipper_length_standardized = (flipper_length_mm - mean(flipper_length_mm))/sd(flipper_length_mm)) |>
184+
select(bill_length_standardized, flipper_length_standardized)
185185
```
186186

187187
```{r message = FALSE, warning = FALSE}

0 commit comments

Comments
 (0)