-
Notifications
You must be signed in to change notification settings - Fork 8
R tips
Hélène LANGET, PhD edited this page Aug 15, 2023
·
7 revisions
Ctrl + Shift + F to call the Find in Files window. It allows you to search through files in a directory that you can specify (even outside the project). You can jump between elements you found by double-clicking them in the Find in Files window which opens next to the console.
library(usethis)
usethis::use_package("dplyr")
"Average" = ~qwraps2::mean_sd(days, denote_sd = "paren", na_rm = TRUE)
kableExtra::footnote(general = "Mean and standard deviation (SD) are represented by the format \\\\textit{mean (SD)}.",
escape = FALSE)
See stackoverflow
pack <- "timci"
path <- find.package(pack)
system(paste(shQuote(file.path(R.home("bin"), "R")),"CMD", "Rd2pdf", shQuote(path)))