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:
-
Installing R, Rtools and RStudio:
vignette("install_r", package = "checkrpkgs"), explaining how to install and configure R, Rtools, and RStudio. -
R packages:
vignette("r_pkgs", package = "checkrpkgs"), explaining how to install R packages; how to get information about to-be-installed and already-installed R packages; and how to get the source code of R functions. -
Using Git and GitHub:
vignette("git_github", package = "checkrpkgs"), explaining how to set up and use Git and GitHub with RStudio.
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
- The book What They Forgot to Teach You About R by J. Bryan, J. Hester, S. Pileggi, and E. D. Aja
- The book An introduction to R by A. Douglas, D. Roos, F. Mancini, A. Couto and D. Lusseau
- Section
Prerequisitesfrom the workshop Building tidy tools by E. Rand and I. Lyttle - Developers might be interested in my package
develcoderwith code and templates to develop R packages.