Last chance! 50% off unlimited learning
Sale ends in
Statistics of inflation's market expectations for the next 12 months. All statistics are computed based on expectations provided by many financial institutions in Brazil: banks, funds, risk managers, so on and so forth. These expections and its statistics are used to build the FOCUS Report weekly released by the Brazilian Central Bank.
get_twelve_months_inflation_expectations(
indic = NULL,
start_date = NULL,
end_date = NULL,
...
)
a character vector with economic indicators names. They are case sensitive and don't forget the accents.
series initial date.
Accepts ISO character formated date and Date
.
series final date.
Accepts ISO character formated date and Date
.
additional parameters to be passed to the API
indic
argument must be one of indicators listed in Details.
Respecting the case, blank spaces and accents.
The ...
is to be used with API's parameters. $top
to specify
the maximum number of rows to be returned, this returns the $top
rows,
in chronological order. There is also $skip
to ignore the first rows.
A data.frame
with the requested data.
There are inflation's expectations available for the following indicators:
IGP-DI
IGP-M
INPC
IPA-DI
IPA-M
IPCA
IPCA Administrados
IPCA Alimenta<U+00E7><U+00E3>o no domic<U+00ED>lio
IPCA Bens industrializados
IPCA Livres
IPCA Servi<U+00E7>os
IPCA-15
IPC-FIPE
Check <https://olinda.bcb.gov.br/olinda/servico/Expectativas/versao/v1/documentacao#ExpectativasMercadoInflacao12Meses> for more details
# NOT RUN {
indic <- c("IPCA", "IGP-M")
end_date <- "2018-06-22"
x <- get_twelve_months_inflation_expectations(indic, end_date = end_date, `$top` = 10)
# return all indicators for the specified date range
start_date <- "2021-01-01"
x <- get_twelve_months_inflation_expectations(start_date = start_date, `$top` = 20)
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab