Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thinkr-open/thinkr-open.r-universe.dev
Packages for the ThinkR Universe
https://github.com/thinkr-open/thinkr-open.r-universe.dev
r-universe
Last synced: about 2 months ago
JSON representation
Packages for the ThinkR Universe
- Host: GitHub
- URL: https://github.com/thinkr-open/thinkr-open.r-universe.dev
- Owner: ThinkR-open
- Created: 2021-07-07T07:12:12.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-26T15:39:48.000Z (11 months ago)
- Last Synced: 2024-05-09T22:19:05.522Z (8 months ago)
- Topics: r-universe
- Homepage: https://thinkr-open.r-universe.dev/
- Size: 27.3 KB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Packages for the ThinkR Universe
This repo host the `package.json` configuration file used to build the [ThinkR r-universe](//thinkr-open.r-universe.dev/).
## Adding a new package
Make a PR to append an entry to the `package.json` file, such as:
``` json
{
"package": "",
"url": "https://github.com/"
}
```## Installing a package from the ThinkR r-universe
A one-shot example using {golem}:
``` r
install.packages("golem", repos = "https://thinkr-open.r-universe.dev" )```
Alternatively you can configure your `repos` R option as such:``` r
options(
repos = c(
thinkropen = "https://thinkr-open.r-universe.dev",
CRAN = "https://cloud.r-project.org"
)
)
install.packages("golem")
```