gitextract_ethd7a8s/ ├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R/ │ ├── annual_reports.R │ ├── backend_utilities.R │ ├── company_info.R │ ├── data.R │ ├── get_balance_sheet.R │ ├── get_cash_flow.R │ ├── get_financial.R │ └── get_income.R ├── README.md ├── data/ │ ├── siccodes.rda │ └── statecodes.rda ├── finreportr.Rproj ├── man/ │ ├── AnnualReports.Rd │ ├── CompanyInfo.Rd │ ├── GetBalanceSheet.Rd │ ├── GetCashFlow.Rd │ ├── GetIncome.Rd │ ├── siccodes.Rd │ └── statecodes.Rd ├── tests/ │ ├── testthat/ │ │ └── test.R │ └── testthat.R └── vignettes/ └── finreportr.Rmd