Skip to contents

checkrpkgs explains how to install and configure R, Rtools, and RStudio; how to install R packages and get information about to-be-installed and already-installed packages; how to get the source code of R functions; and how to set up and use Git and GitHub with RStudio.

Installation

Visit the checkrpkgs website to explore the package, or install checkrpkgs from GitHub using the following R code (you need to run R as administrator):

if(!requireNamespace("remotes", quietly = TRUE)) {
  install.packages(pkgs = "remotes", quiet = FALSE)
}
remotes::install_github(repo = "JesseAlderliesten/checkrpkgs",
                        dependencies = NA, upgrade = FALSE, force = FALSE,
                        quiet = FALSE, build_vignettes = TRUE, lib = NULL,
                        verbose = getOption("verbose"))

Content

checkrpkgs consists of three vignettes:

License

This project is licensed under the terms of the MIT License.

Citation

To cite package 'checkrpkgs' in publications use:

  Alderliesten J (2026). _checkrpkgs: Installing and Using R, Rtools,
  RStudio, R Packages, Git and GitHub_. R package version 1.1.0,
  <https://github.com/JesseAlderliesten/checkrpkgs>.

A BibTeX entry for LaTeX users is

  @Manual{,
    title = {checkrpkgs: Installing and Using R, Rtools, RStudio, R Packages, Git and
GitHub},
    author = {Jesse Alderliesten},
    year = {2026},
    note = {R package version 1.1.0},
    url = {https://github.com/JesseAlderliesten/checkrpkgs},
  }

Similar resources