Created
January 23, 2024 22:28
-
-
Save MattCowgill/45494e2626a7480b428e18a0ffd2f4c9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(fredr) | |
library(tidyverse) | |
layoffs <- fredr_series_observations("JTSLDL") | |
layoffs |> | |
ggplot(aes(x = date, y = value)) + | |
geom_line() + | |
coord_cartesian(ylim = c(0, 3000)) + | |
theme_minimal() + | |
labs(title = "Layoffs and discharges", | |
subtitle = "Total nonfarm, thousands, monthly, seasonally adjusted", | |
caption = "Source: FRED") + | |
theme(axis.title = element_blank()) |
Author
MattCowgill
commented
Jan 23, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment