epiverse simplifies installing and loading the collection of R packages
maintained by the Economic Policy Institute. A
single call to library(epiverse) attaches all included packages and
reports any function conflicts.
library(epiverse)
#> Warning: package 'epiverse' was built under R version 4.5.3
#> Warning: package 'epiextractr' was built under R version 4.5.3
#> Warning: package 'prefab' was built under R version 4.5.3
#> ── Attaching epiverse packages ─────────────────────────────── epiverse 0.1.0 ──
#> ✔ epidatatools 1.0.1 ✔ prefab 0.1.0
#> ✔ epiextractr 0.11.1 ✔ realtalk 2026.3.11
#> ✔ epitargets 0.2.0 ✔ swadlr 0.2.0| Package | Description |
|---|---|
| epidatatools | Tools for working with EPI data |
| epiextractr | Extract and process CPS microdata |
| epitargets | targets pipeline helpers for EPI projects |
| prefab | Opinionated theme system for R project scaffolding |
| realtalk | Inflation adjustment for price data |
| swadlr | State of Working America Data Library in R |
Install the epiverse from r-universe:
install.packages(
"epiverse",
repos = c("https://economic.r-universe.dev", getOption("repos"))
)If you add the EPI r-universe repo to your .Rprofile with
# Example .Rprofile
options(repos = c(
epi = "https://economic.r-universe.dev",
getOption("repos")
))then you can simply
install.packages("epiverse")This package draws heavily on the architecture of the tidyverse package by Hadley Wickham.
MIT