EPI packages for R

epiverse

realtalk

epidatatools

epiextractr

To install:

You can install any of these packages from the EPI R-universe repository. For example, the epiverse package can be installed with:

install.packages("epiverse", repos = c("https://economic.r-universe.dev", getOption("repos")))

Similar code is available on each package’s GitHub page.

However, for easier syntax and updates, consider adding the repository to the “repos” option in your .Rprofile file:

# Example .Rprofile  
options(repos = c(
    epi = "https://economic.r-universe.dev",
    getOption("repos")
))

After making those edits and restarting R, you can just use install.packages("epiverse") to update packages to the latest version, or install new EPI packages.

To find and edit your .Rprofile, use usethis::edit_r_profile().

Back to top