get_quarterly_market_expectations {rbcb} | R Documentation |
Get quarterly market expectations of economic indicators
Description
Statistics for the quarterly expectations of economic indicators. All statistics are computed based on quarterly 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.
Usage
get_quarterly_market_expectations(
indic = NULL,
start_date = NULL,
end_date = NULL,
...
)
Arguments
indic |
a character vector with economic indicators names. They are case sensitive and don't forget the accents. |
start_date |
series initial date. Accepts ISO character formated date and |
end_date |
series final date. Accepts ISO character formated date and |
... |
additional parameters to be passed to the API
The |
Details
There are quarterly expectations available for the following indicators:
Câmbio
IPCA
IPCA Administrados
IPCA Alimentação no domicílio
IPCA Bens industrializados
IPCA Livres
IPCA Serviços
PIB Agropecuária
PIB Indústria
PIB Serviços
PIB Total
Taxa de desocupação
Check <https://olinda.bcb.gov.br/olinda/servico/Expectativas/versao/v1/documentacao#ExpectativasMercadoTrimestrais> for more details
Value
A data.frame
with the requested data.
Examples
## Not run:
indic <- c("PIB Industrial", "PIB Total")
end_date <- "2018-01-31"
x <- get_quarterly_market_expectations(indic, end_date = end_date, `$top` = 10)
# return all indicators for the specified date range
start_date <- "2021-01-01"
x <- get_quarterly_market_expectations(start_date = start_date, `$top` = 20)
## End(Not run)