Title: | Access Data from the Brazilian Development Bank (BNDES) |
---|---|
Description: | Allows access to data on BNDES disbursements and contracts since 1995. The package makes it easy to import data from the bank into R.<https://www.bndes.gov.br/SiteBNDES/bndes/bndes_en>. |
Authors: | Igor Laltuf [aut, cre] |
Maintainer: | Igor Laltuf <[email protected]> |
License: | MIT + file LICENSE |
Version: | 1.0.3 |
Built: | 2024-11-26 06:23:36 UTC |
Source: | https://github.com/igorlaltuf/bndesr |
Downloads data from BNDESPar desimbursements since 2007 and return it in the form of a dataframe.
query_bndespar_desimbursements(year = "all")
query_bndespar_desimbursements(year = "all")
year |
selects the years which data will be downloaded. integer. |
a dataframe with the data
df <- query_bndespar_desimbursements()
df <- query_bndespar_desimbursements()
Downloads data from the portfolio since 2006 and return it in the form of a dataframe.
query_bndespar_portfolio(year = "all")
query_bndespar_portfolio(year = "all")
year |
selects the years which data will be downloaded. integer. |
a dataframe with the data
df <- query_bndespar_portfolio()
df <- query_bndespar_portfolio()
Downloads contracts data for the selected years, since 2002, and return it in the form of a dataframe. Note: to access the total amount disbursed, use the function query_desimbursements_data().
query_contracts(year = "all")
query_contracts(year = "all")
year |
selects the years which data will be downloaded. integer. |
a dataframe with data for the selected year.
## Not run: query_contracts(year = 2012)
## Not run: query_contracts(year = 2012)
Downloads the data on loan disbursements for the selected years, since 1995, and return it in the form of a dataframe.
query_desimbursements(year = "all")
query_desimbursements(year = "all")
year |
selects the years which data will be downloaded. integer. |
a dataframe with data for the selected year.
## Not run: query_desimbursements(year = c(1999:2010))
## Not run: query_desimbursements(year = c(1999:2010))