├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── confint.R ├── dbreg-package.R ├── dbreg.R ├── gof.R ├── print.R └── tidy.R ├── README.md ├── benchmarks └── benchmark.R ├── inst └── tinytest │ ├── test_airquality.R │ ├── test_errors.R │ ├── test_gof.R │ └── test_trade.R ├── man ├── backend_supports_count_big.Rd ├── choose_strategy.Rd ├── compute_vcov.Rd ├── confint.dbreg.Rd ├── dbreg-package.Rd ├── dbreg.Rd ├── execute_compress_strategy.Rd ├── execute_moments_strategy.Rd ├── execute_mundlak_strategy.Rd ├── finalize_dbreg_result.Rd ├── gen_coeftable.Rd ├── gen_xvar_pairs.Rd ├── glance.dbreg.Rd ├── gof.Rd ├── print.dbreg.Rd ├── process_dbreg_inputs.Rd ├── reexports.Rd ├── solve_with_fallback.Rd ├── tidy.dbreg.Rd └── vcov.dbreg.Rd └── tests └── tinytest.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2024 2 | COPYRIGHT HOLDER: dbreg authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/confint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/R/confint.R -------------------------------------------------------------------------------- /R/dbreg-package.R: -------------------------------------------------------------------------------- 1 | #' @keywords internal 2 | "_PACKAGE" 3 | 4 | NULL -------------------------------------------------------------------------------- /R/dbreg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/R/dbreg.R -------------------------------------------------------------------------------- /R/gof.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/R/gof.R -------------------------------------------------------------------------------- /R/print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/R/print.R -------------------------------------------------------------------------------- /R/tidy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/R/tidy.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/benchmark.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/benchmarks/benchmark.R -------------------------------------------------------------------------------- /inst/tinytest/test_airquality.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/inst/tinytest/test_airquality.R -------------------------------------------------------------------------------- /inst/tinytest/test_errors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/inst/tinytest/test_errors.R -------------------------------------------------------------------------------- /inst/tinytest/test_gof.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/inst/tinytest/test_gof.R -------------------------------------------------------------------------------- /inst/tinytest/test_trade.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/inst/tinytest/test_trade.R -------------------------------------------------------------------------------- /man/backend_supports_count_big.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/backend_supports_count_big.Rd -------------------------------------------------------------------------------- /man/choose_strategy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/choose_strategy.Rd -------------------------------------------------------------------------------- /man/compute_vcov.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/compute_vcov.Rd -------------------------------------------------------------------------------- /man/confint.dbreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/confint.dbreg.Rd -------------------------------------------------------------------------------- /man/dbreg-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/dbreg-package.Rd -------------------------------------------------------------------------------- /man/dbreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/dbreg.Rd -------------------------------------------------------------------------------- /man/execute_compress_strategy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/execute_compress_strategy.Rd -------------------------------------------------------------------------------- /man/execute_moments_strategy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/execute_moments_strategy.Rd -------------------------------------------------------------------------------- /man/execute_mundlak_strategy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/execute_mundlak_strategy.Rd -------------------------------------------------------------------------------- /man/finalize_dbreg_result.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/finalize_dbreg_result.Rd -------------------------------------------------------------------------------- /man/gen_coeftable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/gen_coeftable.Rd -------------------------------------------------------------------------------- /man/gen_xvar_pairs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/gen_xvar_pairs.Rd -------------------------------------------------------------------------------- /man/glance.dbreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/glance.dbreg.Rd -------------------------------------------------------------------------------- /man/gof.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/gof.Rd -------------------------------------------------------------------------------- /man/print.dbreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/print.dbreg.Rd -------------------------------------------------------------------------------- /man/process_dbreg_inputs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/process_dbreg_inputs.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/solve_with_fallback.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/solve_with_fallback.Rd -------------------------------------------------------------------------------- /man/tidy.dbreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/tidy.dbreg.Rd -------------------------------------------------------------------------------- /man/vcov.dbreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/man/vcov.dbreg.Rd -------------------------------------------------------------------------------- /tests/tinytest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/dbreg/HEAD/tests/tinytest.R --------------------------------------------------------------------------------