Skip to content

Commit

Permalink
Revert "Temporarily remove inline code"
Browse files Browse the repository at this point in the history
This reverts commit 8e53124.
  • Loading branch information
jennybc committed Jun 4, 2023
1 parent 8e53124 commit 0e25fbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vignettes/articles/read-sheets.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ deaths_url <- rlang::with_interactive(value = FALSE,
deaths_hyperlink <- glue::glue("[here]({deaths_url})")
```

If you looked at the "deaths" spreadsheet in the browser (it's DEATHS_HYPERLINK), you know that it has some of the typical features of real world spreadsheets: the main data rectangle has prose intended for human-consumption before and after it. That's why we have to specify the range when we read from it.
If you looked at the "deaths" spreadsheet in the browser (it's `r deaths_hyperlink`), you know that it has some of the typical features of real world spreadsheets: the main data rectangle has prose intended for human-consumption before and after it. That's why we have to specify the range when we read from it.

We've designated the data rectangles as [named ranges](https://support.google.com/docs/answer/63175?co=GENIE.Platform%3DDesktop&hl=en), which provides a very slick way to read them -- definitely less brittle and mysterious than approaches like `range = "other!A5:F15"` or `skip = 4, n_max = 10`. A named range can be passed via the `range =` argument:

Expand Down

0 comments on commit 0e25fbe

Please sign in to comment.