Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/aleksanderbl29/aleksanderbl29.r-universe.dev
- Owner: aleksanderbl29
- Created: 2024-09-19T09:47:02.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-28T11:24:47.000Z (2 months ago)
- Last Synced: 2024-10-28T14:48:21.494Z (2 months ago)
- Language: R
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.