Skip to content

jimbrig/jimbrig.r-universe.dev

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

R Packages for Jimmy Briggs (jimbrig)

Note

This repository hosts the packages.json configuration file used to build my R Universe.

Badges

Build package Cleanup package server Update Universe

Configuration

All configuration is housed in the packages.json:

View Code

[
  {
    "package": "jimstools",
    "url": "https://github.com/jimbrig/jimstools"
  },
  {
    "package": "lossrx",
    "url": "https://github.com/jimbrig/lossrx"
  },
  {
    "package": "losdevtapp",
    "url": "https://github.com/jimbrig/lossdevtapp"
  },
  {
    "package": "configR",
    "url": "https://github.com/jimbrig/configR"
  },
  {
    "package": "templateeR",
    "url": "https://github.com/jimbrig/templateeR"
  },
  {
    "package": "browsr",
    "url": "https://github.com/jimbrig/browsr"
  },
  {
    "package": "buildtools",
    "url": "https://github.com/jimbrig/buildtools"
  },
  {
    "package": "rtraining",
    "url": "https://github.com/jimbrig/rtraining"
  }
]

Adding New Packages

Make a new pull-request to append an entry to the packages.json file, i.e.:

{
 "package": "<packageName>",
 "url": "https://github.com/jimbrig/<packageName>"
}

Installing Packages

To install a package from my universe, utilize the following syntax:

install.packages("<packageName>", repos = "https://jimbrig.r-universe.dev")

alternatively, configure the repos option:

options(
    repos = c(
        jimbrig = "https://jimbrig.r-universe.dev",
        CRAN = "https://cloud.r-project.org"
    )
)
install.packages("<packageName>")

Releases

No releases published

Packages

No packages published