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)
Need a high-speed mirror for your open-source project?
Contact our mirror admin team at info@clientvps.com.
This archive is provided as a free public service to the community.
Proudly supported by infrastructure from VPSPulse , RxServers , BuyNumber , UnitVPS , OffshoreName and secure payment technology by ArionPay.