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.

Unemployment Data

get_unemployment()

Retrieves Brazil’s quarterly unemployment rate from IBGE’s Continuous PNAD.

Parameters

Usage

library(brfinance)

# English version
unemp_eng <- get_unemployment(2018, 2024, language = "eng")
head(unemp_eng)

# Portuguese version
unemp_pt <- get_unemployment(2018, 2024, language = "pt") 
head(unemp_pt)

Output Structure

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

plot_unemployment()

Generates a line chart of unemployment rate.

Parameters

Usage

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.