├── .Rbuildignore ├── .github ├── .gitignore ├── CONTRIBUTING.md └── workflows │ ├── R-CMD-check.yaml │ ├── format.yaml │ ├── pr-commands.yaml │ ├── rhub.yaml │ └── test-coverage.yaml ├── .gitignore ├── .lintr ├── CODE_OF_CONDUCT.md ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE.md ├── Makefile ├── Meta └── vignette.rds ├── NAMESPACE ├── NEWS.md ├── R ├── apes.R ├── apes_bias_helpers.R ├── autoplot.R ├── bias_corr.R ├── capybara-package.R ├── cpp11.R ├── feglm.R ├── feglm_helpers.R ├── feglm_offset.R ├── felm.R ├── felm_helpers.R ├── fenegbin.R ├── fepoisson.R ├── fit_control.R ├── fit_helpers.R ├── generics_augment.R ├── generics_coef.R ├── generics_confint.R ├── generics_fitted.R ├── generics_glance.R ├── generics_predict.R ├── generics_print.R ├── generics_summary.R ├── generics_tidy.R ├── generics_vcov.R └── summary_table.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── capybara.Rproj ├── cleanup ├── codemeta.json ├── configure ├── cran-comments.md ├── data └── trade_panel.rda ├── dev └── alpaca-int-ext-margins │ ├── cudata.rds │ └── currency_unions_tidy.r ├── doc ├── intro.R ├── intro.Rmd └── intro.html ├── docs ├── 404.html ├── CODE_OF_CONDUCT.html ├── CONTRIBUTING.html ├── LICENSE.html ├── apple-touch-icon.png ├── articles │ ├── index.html │ └── intro.html ├── authors.html ├── deps │ ├── bootstrap-5.3.1 │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ └── bootstrap.min.css │ ├── bootstrap-toc-1.0.1 │ │ └── bootstrap-toc.min.js │ ├── clipboard.js-2.0.11 │ │ └── clipboard.min.js │ ├── data-deps.txt │ ├── font-awesome-6.5.2 │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ ├── headroom-0.11.0 │ │ ├── headroom.min.js │ │ └── jQuery.headroom.min.js │ ├── jquery-3.6.0 │ │ ├── jquery-3.6.0.js │ │ ├── jquery-3.6.0.min.js │ │ └── jquery-3.6.0.min.map │ └── search-1.0.0 │ │ ├── autocomplete.jquery.min.js │ │ ├── fuse.min.js │ │ └── mark.min.js ├── favicon-96x96.png ├── favicon.ico ├── favicon.svg ├── index.html ├── katex-auto.js ├── lightswitch.js ├── link.svg ├── logo.svg ├── news │ └── index.html ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── apes.html │ ├── augment.felm.html │ ├── augment.html │ ├── autoplot-1.png │ ├── autoplot-2.png │ ├── autoplot.felm.html │ ├── autoplot.html │ ├── bias_corr.html │ ├── broom.html │ ├── capybara-package.html │ ├── capybara.html │ ├── feglm.html │ ├── felm.html │ ├── fenegbin.html │ ├── fepoisson.html │ ├── figures │ │ └── logo.svg │ ├── fit_control.html │ ├── glance.feglm.html │ ├── glance.felm.html │ ├── glance.html │ ├── index.html │ ├── reexports.html │ ├── summary_table.html │ ├── tidy.feglm.html │ ├── tidy.felm.html │ ├── tidy.html │ ├── trade_panel.html │ ├── vcov.feglm.html │ └── vcov.felm.html ├── search.json ├── site.webmanifest ├── sitemap.xml ├── web-app-manifest-192x192.png └── web-app-manifest-512x512.png ├── inst ├── CITATION ├── Makevars.example └── WORDLIST ├── man ├── apes.Rd ├── autoplot.Rd ├── bias_corr.Rd ├── broom.Rd ├── capybara-package.Rd ├── feglm.Rd ├── felm.Rd ├── fenegbin.Rd ├── fepoisson.Rd ├── figures │ └── logo.svg ├── fit_control.Rd ├── reexports.Rd ├── summary_table.Rd ├── trade_panel.Rd ├── vcov.feglm.Rd └── vcov.felm.Rd ├── plosone-article ├── .gitignore ├── _extensions │ └── quarto-journals │ │ └── plos │ │ ├── _extension.yml │ │ ├── _preamble.tex │ │ ├── filter.lua │ │ ├── partials │ │ ├── _affiliations.tex │ │ ├── _authors.tex │ │ ├── before-bib.tex │ │ ├── before-body.tex │ │ ├── biblio.tex │ │ ├── doc-class.tex │ │ └── title.tex │ │ └── plos2015.bst ├── benchmark-globalization.csv ├── benchmark-globalization.r ├── benchmark-ppml.r ├── bibliography.bib ├── capybara.pdf ├── capybara.qmd ├── capybara.tex └── plos2015.bst ├── src ├── 01_center.h ├── 02_beta.h ├── 03_alpha.h ├── 04_lm.h ├── 05_glm_helpers.h ├── 06_glm.h ├── 07_negbin.h ├── 08_sums.h ├── Makevars.in ├── Makevars.win ├── capybara.cpp └── cpp11.cpp ├── tests ├── README.md ├── testthat.R └── testthat │ ├── test-apes-bias.R │ ├── test-autoplot.R │ ├── test-deterministic.R │ ├── test-errors.R │ ├── test-feglm-atypical-columns.R │ ├── test-feglm.R │ ├── test-felm.R │ ├── test-fenegbin.R │ ├── test-fepoisson.R │ ├── test-fixed-effects.R │ ├── test-model-formulas.R │ ├── test-no-fixed-effects.R │ └── test-vcov.R └── vignettes ├── .gitignore ├── intro.Rmd └── references.bib /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/.github/workflows/format.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/.lintr -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/Makefile -------------------------------------------------------------------------------- /Meta/vignette.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/Meta/vignette.rds -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/apes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/apes.R -------------------------------------------------------------------------------- /R/apes_bias_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/apes_bias_helpers.R -------------------------------------------------------------------------------- /R/autoplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/autoplot.R -------------------------------------------------------------------------------- /R/bias_corr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/bias_corr.R -------------------------------------------------------------------------------- /R/capybara-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/capybara-package.R -------------------------------------------------------------------------------- /R/cpp11.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/cpp11.R -------------------------------------------------------------------------------- /R/feglm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/feglm.R -------------------------------------------------------------------------------- /R/feglm_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/feglm_helpers.R -------------------------------------------------------------------------------- /R/feglm_offset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/feglm_offset.R -------------------------------------------------------------------------------- /R/felm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/felm.R -------------------------------------------------------------------------------- /R/felm_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/felm_helpers.R -------------------------------------------------------------------------------- /R/fenegbin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/fenegbin.R -------------------------------------------------------------------------------- /R/fepoisson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/fepoisson.R -------------------------------------------------------------------------------- /R/fit_control.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/fit_control.R -------------------------------------------------------------------------------- /R/fit_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/fit_helpers.R -------------------------------------------------------------------------------- /R/generics_augment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/generics_augment.R -------------------------------------------------------------------------------- /R/generics_coef.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/generics_coef.R -------------------------------------------------------------------------------- /R/generics_confint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/generics_confint.R -------------------------------------------------------------------------------- /R/generics_fitted.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/generics_fitted.R -------------------------------------------------------------------------------- /R/generics_glance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/generics_glance.R -------------------------------------------------------------------------------- /R/generics_predict.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/generics_predict.R -------------------------------------------------------------------------------- /R/generics_print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/generics_print.R -------------------------------------------------------------------------------- /R/generics_summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/generics_summary.R -------------------------------------------------------------------------------- /R/generics_tidy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/generics_tidy.R -------------------------------------------------------------------------------- /R/generics_vcov.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/generics_vcov.R -------------------------------------------------------------------------------- /R/summary_table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/R/summary_table.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | template: 2 | bootstrap: 5 3 | 4 | url: ../capybara/ 5 | destination: docs 6 | -------------------------------------------------------------------------------- /capybara.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/capybara.Rproj -------------------------------------------------------------------------------- /cleanup: -------------------------------------------------------------------------------- 1 | rm -f src/Makevars configure.log 2 | -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/codemeta.json -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/configure -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/trade_panel.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/data/trade_panel.rda -------------------------------------------------------------------------------- /dev/alpaca-int-ext-margins/cudata.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/dev/alpaca-int-ext-margins/cudata.rds -------------------------------------------------------------------------------- /dev/alpaca-int-ext-margins/currency_unions_tidy.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/dev/alpaca-int-ext-margins/currency_unions_tidy.r -------------------------------------------------------------------------------- /doc/intro.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/doc/intro.R -------------------------------------------------------------------------------- /doc/intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/doc/intro.Rmd -------------------------------------------------------------------------------- /doc/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/doc/intro.html -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/CODE_OF_CONDUCT.html -------------------------------------------------------------------------------- /docs/CONTRIBUTING.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/CONTRIBUTING.html -------------------------------------------------------------------------------- /docs/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/LICENSE.html -------------------------------------------------------------------------------- /docs/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/articles/intro.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.3.1/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/bootstrap-5.3.1/bootstrap.min.css -------------------------------------------------------------------------------- /docs/deps/bootstrap-toc-1.0.1/bootstrap-toc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/bootstrap-toc-1.0.1/bootstrap-toc.min.js -------------------------------------------------------------------------------- /docs/deps/clipboard.js-2.0.11/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/clipboard.js-2.0.11/clipboard.min.js -------------------------------------------------------------------------------- /docs/deps/data-deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/data-deps.txt -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/font-awesome-6.5.2/css/all.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/font-awesome-6.5.2/css/all.min.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/font-awesome-6.5.2/css/v4-shims.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/font-awesome-6.5.2/css/v4-shims.min.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /docs/deps/headroom-0.11.0/headroom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/headroom-0.11.0/headroom.min.js -------------------------------------------------------------------------------- /docs/deps/headroom-0.11.0/jQuery.headroom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/headroom-0.11.0/jQuery.headroom.min.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.min.map -------------------------------------------------------------------------------- /docs/deps/search-1.0.0/autocomplete.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/search-1.0.0/autocomplete.jquery.min.js -------------------------------------------------------------------------------- /docs/deps/search-1.0.0/fuse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/search-1.0.0/fuse.min.js -------------------------------------------------------------------------------- /docs/deps/search-1.0.0/mark.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/deps/search-1.0.0/mark.min.js -------------------------------------------------------------------------------- /docs/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/favicon-96x96.png -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/katex-auto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/katex-auto.js -------------------------------------------------------------------------------- /docs/lightswitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/lightswitch.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/apes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/apes.html -------------------------------------------------------------------------------- /docs/reference/augment.felm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/augment.felm.html -------------------------------------------------------------------------------- /docs/reference/augment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/augment.html -------------------------------------------------------------------------------- /docs/reference/autoplot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/autoplot-1.png -------------------------------------------------------------------------------- /docs/reference/autoplot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/autoplot-2.png -------------------------------------------------------------------------------- /docs/reference/autoplot.felm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/autoplot.felm.html -------------------------------------------------------------------------------- /docs/reference/autoplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/autoplot.html -------------------------------------------------------------------------------- /docs/reference/bias_corr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/bias_corr.html -------------------------------------------------------------------------------- /docs/reference/broom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/broom.html -------------------------------------------------------------------------------- /docs/reference/capybara-package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/capybara-package.html -------------------------------------------------------------------------------- /docs/reference/capybara.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/capybara.html -------------------------------------------------------------------------------- /docs/reference/feglm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/feglm.html -------------------------------------------------------------------------------- /docs/reference/felm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/felm.html -------------------------------------------------------------------------------- /docs/reference/fenegbin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/fenegbin.html -------------------------------------------------------------------------------- /docs/reference/fepoisson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/fepoisson.html -------------------------------------------------------------------------------- /docs/reference/figures/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/figures/logo.svg -------------------------------------------------------------------------------- /docs/reference/fit_control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/fit_control.html -------------------------------------------------------------------------------- /docs/reference/glance.feglm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/glance.feglm.html -------------------------------------------------------------------------------- /docs/reference/glance.felm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/glance.felm.html -------------------------------------------------------------------------------- /docs/reference/glance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/glance.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/reexports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/reexports.html -------------------------------------------------------------------------------- /docs/reference/summary_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/summary_table.html -------------------------------------------------------------------------------- /docs/reference/tidy.feglm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/tidy.feglm.html -------------------------------------------------------------------------------- /docs/reference/tidy.felm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/tidy.felm.html -------------------------------------------------------------------------------- /docs/reference/tidy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/tidy.html -------------------------------------------------------------------------------- /docs/reference/trade_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/trade_panel.html -------------------------------------------------------------------------------- /docs/reference/vcov.feglm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/vcov.feglm.html -------------------------------------------------------------------------------- /docs/reference/vcov.felm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/reference/vcov.felm.html -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/site.webmanifest -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /docs/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /docs/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/docs/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/Makevars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/inst/Makevars.example -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /man/apes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/man/apes.Rd -------------------------------------------------------------------------------- /man/autoplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/man/autoplot.Rd -------------------------------------------------------------------------------- /man/bias_corr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/man/bias_corr.Rd -------------------------------------------------------------------------------- /man/broom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/man/broom.Rd -------------------------------------------------------------------------------- /man/capybara-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/man/capybara-package.Rd -------------------------------------------------------------------------------- /man/feglm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/man/feglm.Rd -------------------------------------------------------------------------------- /man/felm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/man/felm.Rd -------------------------------------------------------------------------------- /man/fenegbin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/man/fenegbin.Rd -------------------------------------------------------------------------------- /man/fepoisson.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/man/fepoisson.Rd -------------------------------------------------------------------------------- /man/figures/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/man/figures/logo.svg -------------------------------------------------------------------------------- /man/fit_control.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/man/fit_control.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/summary_table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/man/summary_table.Rd -------------------------------------------------------------------------------- /man/trade_panel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/man/trade_panel.Rd -------------------------------------------------------------------------------- /man/vcov.feglm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/man/vcov.feglm.Rd -------------------------------------------------------------------------------- /man/vcov.felm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/man/vcov.felm.Rd -------------------------------------------------------------------------------- /plosone-article/.gitignore: -------------------------------------------------------------------------------- 1 | /.quarto/ 2 | -------------------------------------------------------------------------------- /plosone-article/_extensions/quarto-journals/plos/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/_extensions/quarto-journals/plos/_extension.yml -------------------------------------------------------------------------------- /plosone-article/_extensions/quarto-journals/plos/_preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/_extensions/quarto-journals/plos/_preamble.tex -------------------------------------------------------------------------------- /plosone-article/_extensions/quarto-journals/plos/filter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/_extensions/quarto-journals/plos/filter.lua -------------------------------------------------------------------------------- /plosone-article/_extensions/quarto-journals/plos/partials/_affiliations.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/_extensions/quarto-journals/plos/partials/_affiliations.tex -------------------------------------------------------------------------------- /plosone-article/_extensions/quarto-journals/plos/partials/_authors.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/_extensions/quarto-journals/plos/partials/_authors.tex -------------------------------------------------------------------------------- /plosone-article/_extensions/quarto-journals/plos/partials/before-bib.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/_extensions/quarto-journals/plos/partials/before-bib.tex -------------------------------------------------------------------------------- /plosone-article/_extensions/quarto-journals/plos/partials/before-body.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/_extensions/quarto-journals/plos/partials/before-body.tex -------------------------------------------------------------------------------- /plosone-article/_extensions/quarto-journals/plos/partials/biblio.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/_extensions/quarto-journals/plos/partials/biblio.tex -------------------------------------------------------------------------------- /plosone-article/_extensions/quarto-journals/plos/partials/doc-class.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/_extensions/quarto-journals/plos/partials/doc-class.tex -------------------------------------------------------------------------------- /plosone-article/_extensions/quarto-journals/plos/partials/title.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/_extensions/quarto-journals/plos/partials/title.tex -------------------------------------------------------------------------------- /plosone-article/_extensions/quarto-journals/plos/plos2015.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/_extensions/quarto-journals/plos/plos2015.bst -------------------------------------------------------------------------------- /plosone-article/benchmark-globalization.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/benchmark-globalization.csv -------------------------------------------------------------------------------- /plosone-article/benchmark-globalization.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/benchmark-globalization.r -------------------------------------------------------------------------------- /plosone-article/benchmark-ppml.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/benchmark-ppml.r -------------------------------------------------------------------------------- /plosone-article/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/bibliography.bib -------------------------------------------------------------------------------- /plosone-article/capybara.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/capybara.pdf -------------------------------------------------------------------------------- /plosone-article/capybara.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/capybara.qmd -------------------------------------------------------------------------------- /plosone-article/capybara.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/capybara.tex -------------------------------------------------------------------------------- /plosone-article/plos2015.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/plosone-article/plos2015.bst -------------------------------------------------------------------------------- /src/01_center.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/src/01_center.h -------------------------------------------------------------------------------- /src/02_beta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/src/02_beta.h -------------------------------------------------------------------------------- /src/03_alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/src/03_alpha.h -------------------------------------------------------------------------------- /src/04_lm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/src/04_lm.h -------------------------------------------------------------------------------- /src/05_glm_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/src/05_glm_helpers.h -------------------------------------------------------------------------------- /src/06_glm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/src/06_glm.h -------------------------------------------------------------------------------- /src/07_negbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/src/07_negbin.h -------------------------------------------------------------------------------- /src/08_sums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/src/08_sums.h -------------------------------------------------------------------------------- /src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/src/Makevars.in -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/capybara.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/src/capybara.cpp -------------------------------------------------------------------------------- /src/cpp11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/src/cpp11.cpp -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-apes-bias.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/tests/testthat/test-apes-bias.R -------------------------------------------------------------------------------- /tests/testthat/test-autoplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/tests/testthat/test-autoplot.R -------------------------------------------------------------------------------- /tests/testthat/test-deterministic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/tests/testthat/test-deterministic.R -------------------------------------------------------------------------------- /tests/testthat/test-errors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/tests/testthat/test-errors.R -------------------------------------------------------------------------------- /tests/testthat/test-feglm-atypical-columns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/tests/testthat/test-feglm-atypical-columns.R -------------------------------------------------------------------------------- /tests/testthat/test-feglm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/tests/testthat/test-feglm.R -------------------------------------------------------------------------------- /tests/testthat/test-felm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/tests/testthat/test-felm.R -------------------------------------------------------------------------------- /tests/testthat/test-fenegbin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/tests/testthat/test-fenegbin.R -------------------------------------------------------------------------------- /tests/testthat/test-fepoisson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/tests/testthat/test-fepoisson.R -------------------------------------------------------------------------------- /tests/testthat/test-fixed-effects.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/tests/testthat/test-fixed-effects.R -------------------------------------------------------------------------------- /tests/testthat/test-model-formulas.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/tests/testthat/test-model-formulas.R -------------------------------------------------------------------------------- /tests/testthat/test-no-fixed-effects.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/tests/testthat/test-no-fixed-effects.R -------------------------------------------------------------------------------- /tests/testthat/test-vcov.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/tests/testthat/test-vcov.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/vignettes/intro.Rmd -------------------------------------------------------------------------------- /vignettes/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pachadotdev/capybara/HEAD/vignettes/references.bib --------------------------------------------------------------------------------