Refactor code to use forward-pipe operator for better readability and consistency

This commit is contained in:
2026-01-27 17:19:44 +01:00
parent 4697570bcc
commit 5d0c1d2b4e
6 changed files with 82 additions and 84 deletions

View File

@@ -32,8 +32,8 @@ Note that the `echo = FALSE` parameter was added to the code chunk to prevent pr
```{r}
library(kableExtra)
mtcars[1:5, 1:5] %>%
kbl() %>%
mtcars[1:5, 1:5] |>
kbl() |>
kable_styling()
```