The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
Retrieves Brazil’s quarterly unemployment rate from IBGE’s Continuous PNAD.
start_year: Starting year (e.g., 2015)end_year: Ending year (e.g., 2024)language: Labels language - "eng"
(default) or "pt"English:
# A tibble: 28 × 2
date rate
<date> <dbl>
1 2018-01-01 12.2
2 2018-04-01 12.9
Portuguese:
# A tibble: 28 × 2
data taxa
<date> <dbl>
1 2018-01-01 12.2
Generates a line chart of unemployment rate.
data: Data from get_unemployment()language: Plot labels - "eng" (default) or
"pt"library(brfinance)
# Get data
unemp_data <- get_unemployment(2020, 2024)
# Create plot
unemp_plot <- plot_unemployment(unemp_data, language = "eng")
print(unemp_plot)
# Portuguese version
unemp_data2 <- get_unemployment(2020, 2024, language = "pt")
unemp_plot_pt <- plot_unemployment(unemp_data2, language = "pt")
print(unemp_plot_pt)These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.