Add explanation of transformation, explain #1280

This commit is contained in:
mine-cetinkaya-rundel 2023-02-24 00:26:34 -05:00
parent 661b0a5339
commit 550f5ce7d3
1 changed files with 3 additions and 1 deletions

View File

@ -93,9 +93,11 @@ mean (x ,na.rm=TRUE)
```
It's OK to add extra spaces if it improves alignment.
For example, if you're creating multiple variables in `mutate()`, you might want to add spaces so that all the `=` line up.
For example, if you're creating multiple variables in `mutate()`, you might want to add spaces so that all the `=` line up.[^workflow-style-1]
This makes it easier to skim the code.
[^workflow-style-1]: Since `dep_time` is in `HMM` or `HHMM` fomat, we use integer division (`%/%`) to get hour and remainder (also known as modulo, `%%`) to get minute.
```{r}
#| eval: false