Package 'bndesr'

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

Help Index


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))