Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/r-hub/rversions
R versions, release dates and nicknames
https://github.com/r-hub/rversions
r r-package rstats
Last synced: 3 months ago
JSON representation
R versions, release dates and nicknames
- Host: GitHub
- URL: https://github.com/r-hub/rversions
- Owner: r-hub
- License: other
- Created: 2014-11-21T19:16:53.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2023-09-22T14:18:39.000Z (about 1 year ago)
- Last Synced: 2024-08-02T22:56:37.110Z (3 months ago)
- Topics: r, r-package, rstats
- Language: R
- Homepage: https://r-hub.github.io/rversions
- Size: 288 KB
- Stars: 39
- Watchers: 3
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - r-hub/rversions - R versions, release dates and nicknames (R)
README
---
output:
github_document:
html_preview: false
---```{r, setup, echo = FALSE, message = FALSE}
knitr::opts_chunk$set(
comment = "#>",
tidy = FALSE,
error = FALSE)
```> Past and present R versions
[![R-CMD-check](https://github.com/r-hub/rversions/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/r-hub/rversions/actions/workflows/R-CMD-check.yaml)
[![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/rversions)](https://r-pkg.org/pkg/rversions)
[![CRAN version](https://www.r-pkg.org/badges/version/rversions)](https://r-pkg.org/pkg/rversions)
[![CRAN checks](https://cranchecks.info/badges/summary/rversions)](https://cran.r-project.org/web/checks/check_results_rversions.html)
[![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/r-hub/community)
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![Codecov test coverage](https://codecov.io/gh/r-hub/rversions/branch/master/graph/badge.svg)](https://app.codecov.io/gh/r-hub/rversions?branch=master)The R version numbers and dates are extracted from the
main R SVN repository at https://svn.r-project.org/R/.`rversions` is in particular useful for determining at any given moment what versions "R-release" and "R-oldrel" refer to. This is useful for e.g. [R-hub](https://docs.r-hub.io/).
## Installation
```{r eval = FALSE}
install.packages("rversions")
```## Usage
### R-release and R-oldrel
```{r}
library(rversions)
r_release()
r_oldrel()
```### All R versions and release dates
```{r}
r_versions()
```## License
MIT © [Gábor Csárdi](https://github.com/gaborcsardi)