Install tesselle packages from our CRAN-like repository on R-universe.
Most of the R packages of the tesselle project are distributed on CRAN when they reach an acceptable level of maturity. Development versions can be installed from GitHub using remotes :
## Install the development version from GitHub
install.packages("remotes")
remotes::install_github("tesselle/tabula")
Thanks to the R-universe project powered by rOpenSci, tesselle now has its own CRAN-like repository: tesselle.r-universe.dev. This repository allows to install all development versions and non-CRAN packages (e.g. WIP packages and large data packages).
If you want to install a package from the tesselle universe, simply use install.packages()
with the additional repository:
## Install a package from the 'tesselle' universe
install.packages("tabula", repos = "https://tesselle.r-universe.dev")
## Enable the repository globally
options(repos = c(tesselle = "https://tesselle.r-universe.dev",
CRAN = "https://cloud.r-project.org"))
## Install some packages
install.packages(c("tabula", "kairos"))
You can use this repository in your R package (if available, CRAN releases must be regarded as the preferred source). To do so, prepare the DESCRIPTION
file of your R package:
Suggests:
Additional_repositories: https://tesselle.r-universe.dev
R CMD check --as-cran
If you see mistakes or want to suggest changes, please create an issue on the source repository.
Text and figures are licensed under Creative Commons Attribution CC BY 4.0. Source code is available at https://github.com/tesselle/website, unless otherwise noted. The figures that have been reused from other sources don't fall under this license and can be recognized by a note in their caption: "Figure from ...".
For attribution, please cite this work as
Frerebeau (2021, Aug. 15). tesselle: The tesselle universe. Retrieved from https://www.tesselle.org/posts/2021-08-15-tesselle-universe/
BibTeX citation
@misc{tesselle-universe, author = {Frerebeau, Nicolas}, title = {tesselle: The tesselle universe}, url = {https://www.tesselle.org/posts/2021-08-15-tesselle-universe/}, year = {2021} }