ThinkR-open / thinkr-open.r-universe.dev

Packages for the ThinkR Universe

Home Page:https://thinkr-open.r-universe.dev/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Packages for the ThinkR Universe

This repo host the package.json configuration file used to build the ThinkR r-universe.

Adding a new package

Make a PR to append an entry to the package.json file, such as:

    {
        "package": "<my-package-name>",
        "url": "https://github.com/<my-package-github-url>"
    }

Installing a package from the ThinkR r-universe

A one-shot example using {golem}:

install.packages("golem", repos = "https://thinkr-open.r-universe.dev" )

Alternatively you can configure your repos R option as such:

options(
    repos = c(
        thinkropen = "https://thinkr-open.r-universe.dev",
        CRAN = "https://cloud.r-project.org"
        )
  )
install.packages("golem")

About

Packages for the ThinkR Universe

https://thinkr-open.r-universe.dev/