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:
parent
a8a6d1bfbd
commit
dc95230a6d
|
@ -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}
|
||||
|
|
Loading…
Reference in New Issue