This commit is contained in:
Zeki Akyol 2023-02-25 17:06:46 +03:00 committed by GitHub
parent 1ae4d0a042
commit f03b2e4a67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ 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.[^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.
[^workflow-style-1]: Since `dep_time` is in `HMM` or `HHMM` format, we use integer division (`%/%`) to get hour and remainder (also known as modulo, `%%`) to get minute.
```{r}
#| eval: false