Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aleksanderbl29/aleksanderbl29.r-universe.dev

R-univserse repo
https://github.com/aleksanderbl29/aleksanderbl29.r-universe.dev

Last synced: about 1 month ago
JSON representation

R-univserse repo

Awesome Lists containing this project

README

        

# aleksanderbl29 setup for the r-universe

This repository holds a `packages.json` files
with the packages to be included in the dedicated universe
[aleksanderbl29.r-universe.dev/](https://aleksanderbl29.r-universe.dev)

Source universe for aleksanderbl29:

Last deployment:

## Adding a new package to the r-universe

Just commit to [packages.json](https://github.com/aleksanderbl29/aleksanderbl29.r-universe.dev/blob/main/packages.json) with the following information:

```json

[
{
"package": "name_of_the_package",
"url": "https://url_of_the_repo",
"branch" : "optional: name_of_the_branch e.g main",
"subdir": "optional: name_of_the_subdir"
}
]
```

In a few minutes it would be available on
.

## Usage

```r

# Enable this universe
options(repos = c(
aleksanderbl29 = 'https://aleksanderbl29.r-universe.dev',
CRAN = 'https://cloud.r-project.org'))

# Install some packages
install.packages('dawaR')

```

### Note

This readme has been inspired by rOpenGov's approach.