cat("\014") # clear console
rm(list=ls()) # Clear the workspace
library(fredo)
library(fredr)
library(dplyr)
library(purrr)
library(lubridate)
Mike Aguilar
December 9, 2024
API’s are a convenient way to automate the download acquisition process.
In this post we’ll explore two packages that provide APIs into FRED. ## FREDR https://sboysel.github.io/fredr/articles/fredr.html
https://github.com/manutzn/fredo
Alternatively, you could set an environment variable. See FREDO BLOG on FRED for details.
Task: open connection to FRED via your API key
Task: use fredr_series_observations to call the 10yr ticker DGS10
Task: use the fredr function to call the 10yr from the beginning of 1990 through the beginning of 2000 on a quarterly basis and set units to the raw change (delta, not percent delta)
Task: Create a list containing an object called series_id containing a column vector containing two elements, one for the 10yr FRED ticker and one for the FRED UR ticker. Also create frequency object within that list called frequency that contains the FRED indicator for monthly data; one for each series. Lastly, create observation_start and observation_end objects set to the start of 1990 and the start of 2000, respectively.
Task: Create an object called MultipleSeries that uses pmap_dfr to call fredr and the list you created above. Then select only the date, series_id, and value from that dataframe.
Task: Pull all available data for the 10yr daily Treasury yield.
FREDO doesn’t appear to have a way to natively aggregate the frequency nor transform the data.
Task: Pull the 10yr and UR from 1990-01-01 to 2000-01-01.
series_ids <- c("DGS10", "UNRATE")
start_date <- as.Date("1990-01-01")
end_date <- as.Date("2000-01-01")
MultipleSeries.FREDO<-fredo(
api_key,
series_ids,
start_date=start_date,
end_date = end_date)
dim(MultipleSeries.FREDO)
[1] 2731 17
I love that it stacks the series into a long dataframe.
I don’t like that there doesn’t seem to be a native way to get these onto the same frequency.
Task: Switch the order of the series ID.
series_ids <- c("UNRATE","DGS10")
start_date <- as.Date("1990-01-01")
end_date <- as.Date("2000-01-01")
MultipleSeries.FREDO2<-fredo(
api_key,
series_ids,
start_date=start_date,
end_date = end_date)
dim(MultipleSeries.FREDO2)
[1] 2731 17
Notice that the dimensions are the same. So, that doesn’t resolve the issue.
FREDO has an interesting feature that permits you to auto generate plots. I especially like the ability to automatically turn recession shading on / off.
Task: Plot the 10yr from FREDO with recession bars
\begin{figure}[!h]
\centering
\caption{Market Yield on U.S. Treasury Securities at 10-Year Constant Maturity, Quoted on an Investment Basis}
\includegraphics[scale=1]{Plots/DGS10}
\label{DGS10}
\parbox[1]{6.0in}{ \vspace{1ex} \footnotesize{H.15 Statistical Release (https://www.federalreserve.gov/releases/h15/current/h15.pdf) notes and Treasury Yield Curve Methodology (https://www.treasury.gov/resource-center/data-chart-center/interest-rates/Pages/yieldmethod.aspx). For questions on the data, please contact the data source (https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/releases/h15/%). For questions on FRED functionality, please contact us here (https://fred.stlouisfed.org/contactus/).</p>\hfill }}
\end{figure}
[[1]]
NULL
It’s too bad that the graphics are only exported and not produced natively.
The latex output is handy if you input the image files into a latex document for presentation.
Strengths of FREDO relative to FREDR:
Weaknesses of FREDO relative to FREDR: