| install | R Documentation |
Wrapper around R CMD INSTALL with quiet mode option.
install(path = ".", quiet = TRUE)
path |
Path to package root directory. |
quiet |
Logical. Suppress output except errors? Default TRUE. |
TRUE if successful, FALSE otherwise (invisibly).
# Calls 'R CMD INSTALL', which writes to the user's R library.
# Wrapped in if(interactive()) so CRAN's automated checks never
# mutate the library.
if (interactive()) {
install()
install(quiet = FALSE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.