Fix/iteration typos (#1491)

* a typo

* a typo

* a typo

* Update iteration.qmd

---------

Co-authored-by: Mine Cetinkaya-Rundel <cetinkaya.mine@gmail.com>
This commit is contained in:
Mitsuo Shiota 2023-05-25 03:17:55 +09:00 committed by GitHub
parent a8a6d1bfbd
commit dc95230a6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -220,7 +220,7 @@ df_miss |>
)
```
If you look carefully, you might intuit that the columns are named using using a glue specification (@sec-glue) like `{.col}_{.fn}` where `.col` is the name of the original column and `.fn` is the name of the function.
If you look carefully, you might intuit that the columns are named using a glue specification (@sec-glue) like `{.col}_{.fn}` where `.col` is the name of the original column and `.fn` is the name of the function.
That's not a coincidence!
As you'll learn in the next section, you can use `.names` argument to supply your own glue spec.
@ -785,7 +785,7 @@ data <- files |> list_rbind()
This works particularly well here because `list_rbind()`, like many tidyverse functions, automatically ignores `NULL`s.
Now you have all the data that can be read easily, and it's time to tackle the hard part of figuring out why some files failed to load and what do to about it.
Now you have all the data that can be read easily, and it's time to tackle the hard part of figuring out why some files failed to load and what to do about it.
Start by getting the paths that failed:
```{r}