Fix typo in "iteration" (#1437)

* … because that value is recorded in the path, not **in** the individual files …

add "in"

* but **you** if you look at the docs for the functions used

delete the first "you"
This commit is contained in:
Peter Baumgartner 2023-04-17 15:13:07 +02:00 committed by GitHub
parent 7ab1e7c0d9
commit 4c30b96b3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -574,7 +574,7 @@ paths |>
list_rbind()
```
This makes it clear that something is missing: there's no `year` column because that value is recorded in the path, not the individual files.
This makes it clear that something is missing: there's no `year` column because that value is recorded in the path, not in the individual files.
We'll tackle that problem next.
### Data in the path {#sec-data-in-the-path}
@ -735,7 +735,7 @@ files <- paths |>
Then a very useful strategy is to capture the structure of the data frames so that you can explore it using your data science skills.
One way to do so is with this handy `df_types` function[^iteration-6] that returns a tibble with one row for each column:
[^iteration-6]: We're not going to explain how it works, but you if you look at the docs for the functions used, you should be able to puzzle it out.
[^iteration-6]: We're not going to explain how it works, but if you look at the docs for the functions used, you should be able to puzzle it out.
```{r}
df_types <- function(df) {