library(schtools)
<- system.file("extdata", "sample.final.thetayc.0.03.lt.ave.dist",
dist_filepath package = "schtools")
<- read_dist(dist_filepath)
dist_tbl head(dist_tbl)
#> # A tibble: 6 × 3
#> rows columns distances
#> <chr> <chr> <dbl>
#> 1 104_1_D1 104_1_D0 0.893
#> 2 104_1_D10 104_1_D0 0.254
#> 3 104_1_D10 104_1_D1 0.922
#> 4 104_1_D2 104_1_D0 0.874
#> 5 104_1_D2 104_1_D1 0.109
#> 6 104_1_D2 104_1_D10 0.904
When writing scientific papers with R Markdown, we often find ourselves using the same knitr chunk options and miscellaneous helper functions. To use our favorite options like eval=TRUE
, echo=FALSE
, and others, run set_knitr_opts()
in the first chunk of your R Markdown document:
```{r, include = FALSE}
set_knitr_opts()
```
This also sets the inline hook to our custom inline_hook()
function, which automatically formats numbers in a human-readable way and inserts an Oxford comma into lists when needed.
When writing with R Markdown, you may wish to insert a list or vector inline and correctly format it with an Oxford comma. inline_hook()
uses paste_oxford_list()
to help you do just that!
<- c("cats", "dogs", "fish") animals
Insert the string as inline code with `r `
:
`r animals`
are the most common pets.
Rendered output:
cats, dogs, and fish are the most common pets.
inline_hook()
uses format_numbers()
under the hood to automatically format numbers to a human-readable format, rather than display in scientific notation.
The numbers
`r c(1e-04, 1e-05, 1e-06)`
are very precise, while`r c(1e04, 1e05, 1e06)`
are very large.
Rendered output:
The numbers 0.0001, 0.00001, and 0.000001 are very precise. while 10,000, 100,000, and 1,000,000 are very large.