-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tweak documentation for pkg argument
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,12 @@ | |
#' package library. | ||
#' | ||
#' @param pkg Package names or package references. E.g. | ||
#' - `ggplot2`: package from CRAN, Bioconductor or a CRAN-like repository | ||
#' - `ggplot2` or `cran::ggplot2`: package from CRAN, Bioconductor or a CRAN-like repository | ||
#' in general, | ||
#' - `tidyverse/ggplot2`: package from GitHub, | ||
#' - `tidyverse/[email protected]`: package from GitHub tag or branch, | ||
#' - `https://examples.com/.../ggplot2_3.3.6.tar.gz`: package from URL, | ||
#' - `.`: package in the current working directory. | ||
#' - `tidyverse/ggplot2` or `github::tidyverse/ggplot2`: package from GitHub, | ||
#' - `tidyverse/[email protected]` or `github::tidyverse/[email protected]`: package from GitHub tag or branch, | ||
#' - `url::https://examples.com/.../ggplot2_3.3.6.tar.gz`: package from URL, | ||
#' - `.` or `local::.`: package in the current working directory. | ||
#' | ||
#' See "[Package sources]" for more details. | ||
#' @param lib Package library to install the packages to. Note that _all_ | ||
|