Created
January 23, 2024 21:52
-
-
Save MattCowgill/326b59ea831d77b6c58cf7e799bc734e 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(OECD) | |
library(tidyverse) | |
aus_thresh <- OECD::get_dataset("TABLE_I7", "AUS.THRESHOLD") |> | |
janitor::clean_names() |> | |
mutate(across(c(obs_value, time), | |
as.numeric)) | |
aus_thresh |> | |
ggplot(aes(x = time, y = obs_value)) + | |
geom_line() + | |
labs(subtitle = "Top marginal tax rate threshold as a multiple of average earnings", | |
caption = "Source: OECD Taxing Wages Database") + | |
theme_minimal() + | |
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