UNDER CONSTRUCTION - come back later…
An R package for downloading the latest data from the European Commission’s AMECO macro-economic database.
Installation
You can install the development version of ecmacro from GitHub with:
# install.packages("pak")
pak::pak("xprimexinverse/ecmacro")Example
This is a basic example which shows you how to use the package:
library(ecmacro)
# Download the data
AMECO <- get_ecmacro()
# Search by CODE (1)
ZUTN <- find_series(AMECO, "zutn", field = 1)
# Extract and plot a series
IRL_ZUTN <- get_series(AMECO, "IRL.1.0.0.0.ZUTN")

