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.
Packages
| Package | Description |
|---|---|
| epidatatools | Tools for working with data |
| epiextractr | Extract and process CPS microdata |
| epitargets | targets pipeline helpers |
| prefab | Opinionated theme system for R project scaffolding |
| realtalk | Inflation adjustment for price data |
| swadlr | State of Working America Data Library in R |
Installation
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")Acknowledgments
This package draws heavily on the architecture of the tidyverse package by Hadley Wickham.
