├── .Rbuildignore ├── .gitignore ├── CRAN-RELEASE ├── DESCRIPTION ├── GetDFPData.Rproj ├── NAMESPACE ├── NEWS.md ├── R ├── gdfpd_GetDFPData.R ├── gdfpd_export_DFP_Data.R ├── gdfpd_fct_get_files_from_bovespa.R ├── gdfpd_fix_dataframes.R ├── gdfpd_get_Bovespa_Data.R ├── gdfpd_get_inflation_data.R ├── gdfpd_get_info_companies.R ├── gdfpd_read_dfp_zip_file.R ├── gdfpd_read_fca_zip_file.R ├── gdfpd_read_fre_zip_file.R ├── gdfpd_utils.R └── gdfpd_xml_fcts.R ├── README.md ├── inst └── extdata │ ├── 9512_PETR_2002-12-31.zip │ ├── DFPBPAE.001 │ ├── Example_DFP_Report_Petrobras.RData │ ├── FCA_9512_PETR_2015-12-31.zip │ └── FRE_6629_HERC_2010-12-31.zip ├── man ├── fix.fct.Rd ├── gdfpd.GetDFPData.Rd ├── gdfpd.convert.to.wide.Rd ├── gdfpd.download.file.Rd ├── gdfpd.export.DFP.data.Rd ├── gdfpd.fix.DFP.dataframes.Rd ├── gdfpd.get.bovespa.data.Rd ├── gdfpd.get.files.from.bovespa.Rd ├── gdfpd.get.inflation.data.Rd ├── gdfpd.get.info.companies.Rd ├── gdfpd.read.dfp.zip.file.Rd ├── gdfpd.read.dfp.zip.file.type.1.Rd ├── gdfpd.read.dfp.zip.file.type.2.Rd ├── gdfpd.read.fca.zip.file.Rd ├── gdfpd.read.fre.zip.file.Rd ├── gdfpd.read.fwf.file.Rd ├── gdfpd.read.zip.file.type.fca.Rd ├── gdfpd.read.zip.file.type.fre.Rd ├── gdfpd.search.company.Rd ├── get_files.Rd ├── my.copy.fct.Rd ├── my.merge.dfs.lists.Rd ├── xml.fct.auditing.Rd ├── xml.fct.board.composition.Rd ├── xml.fct.capital.Rd ├── xml.fct.capital.reduction.Rd ├── xml.fct.committee.composition.Rd ├── xml.fct.compensation.Rd ├── xml.fct.compensation.summary.Rd ├── xml.fct.debt.Rd ├── xml.fct.div.details.Rd ├── xml.fct.family.related.parts.Rd ├── xml.fct.family.relations.Rd ├── xml.fct.intangible.details.Rd ├── xml.fct.repurchases.Rd ├── xml.fct.responsible.Rd ├── xml.fct.splits.inplits.Rd ├── xml.fct.stock.values.Rd ├── xml.fct.stockholder.Rd ├── xml.fct.stocks.details.Rd └── xml.fct.transactions.related.Rd ├── tests ├── testthat.R └── testthat │ └── test_gdfpd.R └── vignettes └── gdfpd-vignette-introduction.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/CRAN-RELEASE -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /GetDFPData.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/GetDFPData.Rproj -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/gdfpd_GetDFPData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/R/gdfpd_GetDFPData.R -------------------------------------------------------------------------------- /R/gdfpd_export_DFP_Data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/R/gdfpd_export_DFP_Data.R -------------------------------------------------------------------------------- /R/gdfpd_fct_get_files_from_bovespa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/R/gdfpd_fct_get_files_from_bovespa.R -------------------------------------------------------------------------------- /R/gdfpd_fix_dataframes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/R/gdfpd_fix_dataframes.R -------------------------------------------------------------------------------- /R/gdfpd_get_Bovespa_Data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/R/gdfpd_get_Bovespa_Data.R -------------------------------------------------------------------------------- /R/gdfpd_get_inflation_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/R/gdfpd_get_inflation_data.R -------------------------------------------------------------------------------- /R/gdfpd_get_info_companies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/R/gdfpd_get_info_companies.R -------------------------------------------------------------------------------- /R/gdfpd_read_dfp_zip_file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/R/gdfpd_read_dfp_zip_file.R -------------------------------------------------------------------------------- /R/gdfpd_read_fca_zip_file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/R/gdfpd_read_fca_zip_file.R -------------------------------------------------------------------------------- /R/gdfpd_read_fre_zip_file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/R/gdfpd_read_fre_zip_file.R -------------------------------------------------------------------------------- /R/gdfpd_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/R/gdfpd_utils.R -------------------------------------------------------------------------------- /R/gdfpd_xml_fcts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/R/gdfpd_xml_fcts.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/README.md -------------------------------------------------------------------------------- /inst/extdata/9512_PETR_2002-12-31.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/inst/extdata/9512_PETR_2002-12-31.zip -------------------------------------------------------------------------------- /inst/extdata/DFPBPAE.001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/inst/extdata/DFPBPAE.001 -------------------------------------------------------------------------------- /inst/extdata/Example_DFP_Report_Petrobras.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/inst/extdata/Example_DFP_Report_Petrobras.RData -------------------------------------------------------------------------------- /inst/extdata/FCA_9512_PETR_2015-12-31.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/inst/extdata/FCA_9512_PETR_2015-12-31.zip -------------------------------------------------------------------------------- /inst/extdata/FRE_6629_HERC_2010-12-31.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/inst/extdata/FRE_6629_HERC_2010-12-31.zip -------------------------------------------------------------------------------- /man/fix.fct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/fix.fct.Rd -------------------------------------------------------------------------------- /man/gdfpd.GetDFPData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/gdfpd.GetDFPData.Rd -------------------------------------------------------------------------------- /man/gdfpd.convert.to.wide.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/gdfpd.convert.to.wide.Rd -------------------------------------------------------------------------------- /man/gdfpd.download.file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/gdfpd.download.file.Rd -------------------------------------------------------------------------------- /man/gdfpd.export.DFP.data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/gdfpd.export.DFP.data.Rd -------------------------------------------------------------------------------- /man/gdfpd.fix.DFP.dataframes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/gdfpd.fix.DFP.dataframes.Rd -------------------------------------------------------------------------------- /man/gdfpd.get.bovespa.data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/gdfpd.get.bovespa.data.Rd -------------------------------------------------------------------------------- /man/gdfpd.get.files.from.bovespa.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/gdfpd.get.files.from.bovespa.Rd -------------------------------------------------------------------------------- /man/gdfpd.get.inflation.data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/gdfpd.get.inflation.data.Rd -------------------------------------------------------------------------------- /man/gdfpd.get.info.companies.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/gdfpd.get.info.companies.Rd -------------------------------------------------------------------------------- /man/gdfpd.read.dfp.zip.file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/gdfpd.read.dfp.zip.file.Rd -------------------------------------------------------------------------------- /man/gdfpd.read.dfp.zip.file.type.1.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/gdfpd.read.dfp.zip.file.type.1.Rd -------------------------------------------------------------------------------- /man/gdfpd.read.dfp.zip.file.type.2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/gdfpd.read.dfp.zip.file.type.2.Rd -------------------------------------------------------------------------------- /man/gdfpd.read.fca.zip.file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/gdfpd.read.fca.zip.file.Rd -------------------------------------------------------------------------------- /man/gdfpd.read.fre.zip.file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/gdfpd.read.fre.zip.file.Rd -------------------------------------------------------------------------------- /man/gdfpd.read.fwf.file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/gdfpd.read.fwf.file.Rd -------------------------------------------------------------------------------- /man/gdfpd.read.zip.file.type.fca.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/gdfpd.read.zip.file.type.fca.Rd -------------------------------------------------------------------------------- /man/gdfpd.read.zip.file.type.fre.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/gdfpd.read.zip.file.type.fre.Rd -------------------------------------------------------------------------------- /man/gdfpd.search.company.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/gdfpd.search.company.Rd -------------------------------------------------------------------------------- /man/get_files.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/get_files.Rd -------------------------------------------------------------------------------- /man/my.copy.fct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/my.copy.fct.Rd -------------------------------------------------------------------------------- /man/my.merge.dfs.lists.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/my.merge.dfs.lists.Rd -------------------------------------------------------------------------------- /man/xml.fct.auditing.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.auditing.Rd -------------------------------------------------------------------------------- /man/xml.fct.board.composition.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.board.composition.Rd -------------------------------------------------------------------------------- /man/xml.fct.capital.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.capital.Rd -------------------------------------------------------------------------------- /man/xml.fct.capital.reduction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.capital.reduction.Rd -------------------------------------------------------------------------------- /man/xml.fct.committee.composition.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.committee.composition.Rd -------------------------------------------------------------------------------- /man/xml.fct.compensation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.compensation.Rd -------------------------------------------------------------------------------- /man/xml.fct.compensation.summary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.compensation.summary.Rd -------------------------------------------------------------------------------- /man/xml.fct.debt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.debt.Rd -------------------------------------------------------------------------------- /man/xml.fct.div.details.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.div.details.Rd -------------------------------------------------------------------------------- /man/xml.fct.family.related.parts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.family.related.parts.Rd -------------------------------------------------------------------------------- /man/xml.fct.family.relations.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.family.relations.Rd -------------------------------------------------------------------------------- /man/xml.fct.intangible.details.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.intangible.details.Rd -------------------------------------------------------------------------------- /man/xml.fct.repurchases.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.repurchases.Rd -------------------------------------------------------------------------------- /man/xml.fct.responsible.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.responsible.Rd -------------------------------------------------------------------------------- /man/xml.fct.splits.inplits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.splits.inplits.Rd -------------------------------------------------------------------------------- /man/xml.fct.stock.values.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.stock.values.Rd -------------------------------------------------------------------------------- /man/xml.fct.stockholder.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.stockholder.Rd -------------------------------------------------------------------------------- /man/xml.fct.stocks.details.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.stocks.details.Rd -------------------------------------------------------------------------------- /man/xml.fct.transactions.related.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/man/xml.fct.transactions.related.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_gdfpd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/tests/testthat/test_gdfpd.R -------------------------------------------------------------------------------- /vignettes/gdfpd-vignette-introduction.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msperlin/GetDFPData/HEAD/vignettes/gdfpd-vignette-introduction.Rmd --------------------------------------------------------------------------------