macroverse is a collection of R packages designed for international economic and social data analysis. Following the tidyverse model, macroverse provides a suite of specialized packages that work together seamlessly while remaining independent and focused.
You can install the entire macroverse ecosystem with:
# install.packages("devtools")
devtools::install_github("macroverse-r/macroverse")This will install the macroverse package and all its component packages.
The macroverse ecosystem includes:
- mvcommon: Common utilities and validation functions
- pplot: Panel data visualization tools
- isomapper: ISO codes and country mapping utilities
- macrodata: International economic and social data access
- mvlazy: Convenience functions for quick analysis
Loading macroverse will load all component packages:
library(macroverse)
# Now you can use functions from any macroverse package
data <- md_data(
ISO = "G7",
formula = "GDP_C",
years = c(2010, 2023)
)
pp_plot_series(data, title = "G7 GDP Trends")You can also install and use individual packages:
# Install only what you need
devtools::install_github("macroverse-r/pplot")
devtools::install_github("macroverse-r/macrodata")
# Use them independently
library(pplot)
library(macrodata)- See the macroverse website for full documentation
- Use
mv_help()after loading macroverse for an overview - Check individual package documentation for specific functions
Please note that the macroverse project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.
The macroverse ecosystem is licensed under AGPL-3.0.
