Title: | Access Data from the Brazilian Development Bank (BNDES) |
Version: | 1.0.4 |
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. |
License: | MIT + file LICENSE |
Encoding: | UTF-8 |
RoxygenNote: | 7.3.2 |
Depends: | R (≥ 4.1.0) |
Imports: | dplyr, janitor, lubridate, RCurl, readr, readxl, stringr |
Suggests: | testthat (≥ 3.0.0) |
Config/testthat/edition: | 3 |
NeedsCompilation: | no |
Packaged: | 2025-02-07 01:52:47 UTC; laltuf |
Author: | Igor Laltuf |
Maintainer: | Igor Laltuf <igorlaltuf@gmail.com> |
Repository: | CRAN |
Date/Publication: | 2025-02-07 03:20:02 UTC |
Queries BNDESPar desimbursements data
Description
Downloads data from BNDESPar desimbursements since 2007 and return it in the form of a dataframe.
Usage
query_bndespar_desimbursements(year = "all")
Arguments
year |
selects the years which data will be downloaded. integer. |
Value
a dataframe with the data
Examples
df <- query_bndespar_desimbursements()
Queries BNDESPar portfolio data
Description
Downloads data from the portfolio since 2006 and return it in the form of a dataframe.
Usage
query_bndespar_portfolio(year = "all")
Arguments
year |
selects the years which data will be downloaded. integer. |
Value
a dataframe with the data
Examples
df <- query_bndespar_portfolio()
Query the data of the loan contracts made through the National Bank for Economic and Social Development (BNDES).
Description
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().
Usage
query_contracts(year = "all")
Arguments
year |
selects the years which data will be downloaded. integer. |
Value
a dataframe with data for the selected year.
Examples
## Not run: query_contracts(year = 2012)
Query data on loan disbursements made through the National Bank for Economic and Social Development (BNDES).
Description
Downloads the data on loan disbursements for the selected years, since 1995, and return it in the form of a dataframe.
Usage
query_desimbursements(year = "all")
Arguments
year |
selects the years which data will be downloaded. integer. |
Value
a dataframe with data for the selected year.
Examples
## Not run: query_desimbursements(year = c(1999:2010))