Skip to content

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

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 

Repository files navigation

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")

Releases

No releases published

Packages

No packages published