Skip to content

Meta-package to easily install and load packages from the macroverse

License

Notifications You must be signed in to change notification settings

macroverse-r/macroverse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

macroverse

Lifecycle: experimental License: AGPL v3

Overview

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.

Installation

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.

macroverse 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

Usage

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")

Installing individual packages

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)

Getting help

  • See the macroverse website for full documentation
  • Use mv_help() after loading macroverse for an overview
  • Check individual package documentation for specific functions

Code of Conduct

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.

License

The macroverse ecosystem is licensed under AGPL-3.0.

About

Meta-package to easily install and load packages from the macroverse

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages