diff --git a/iteration.qmd b/iteration.qmd index 8e1f3ad..5316cdb 100644 --- a/iteration.qmd +++ b/iteration.qmd @@ -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}