├── .Rbuildignore ├── .devcontainer ├── Dockerfile ├── devcontainer.json ├── requirements.txt └── setup_rust.sh ├── .github ├── .gitignore ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── R-CMD-check.yaml │ ├── Rust-fail-check.yaml │ ├── pkgdown.yaml │ ├── rhub.yaml │ └── test-coverage.yaml ├── .gitignore ├── .lintr ├── .vscode └── settings.json ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── addin.R ├── br_2020.R ├── extendr-wrappers.R ├── helpers.R ├── import_iom.R ├── miom.R ├── r6.R ├── utils.R └── world_2000.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── cleanup ├── cleanup.win ├── codecov.yml ├── configure ├── configure.win ├── cran-comments.md ├── data-raw ├── br_2020.R └── world_2000.R ├── data ├── br_2020.rda └── world_2000.rda ├── inst ├── REFERENCES.bib ├── WORDLIST ├── addins │ └── fio.css ├── extdata │ └── iom │ │ ├── br │ │ └── 2020.xlsx │ │ └── world │ │ └── 2000.xlsx └── rstudio │ └── addins.dcf ├── man ├── br_2020.Rd ├── download_wiod.Rd ├── figures │ ├── example_leontief_inverse.png │ └── leontief.jpg ├── fio_addin.Rd ├── import_element.Rd ├── iom.Rd ├── miom.Rd └── world_2000.Rd ├── src ├── .gitignore ├── Makevars.in ├── Makevars.win.in ├── entrypoint.c ├── fio-win.def └── rust │ ├── Cargo.lock │ ├── Cargo.toml │ ├── src │ ├── download.rs │ ├── extraction.rs │ ├── ghosh.rs │ ├── influence.rs │ ├── leontief.rs │ ├── lib.rs │ ├── linkages.rs │ ├── multipliers.rs │ └── parallel.rs │ ├── vendor-config.toml │ └── vendor.tar.xz ├── tests ├── spelling.R ├── testthat.R └── testthat │ ├── test-addin.R │ ├── test-computations.R │ ├── test-empty-urls.R │ ├── test-helpers.R │ ├── test-iom.R │ └── test-miom.R ├── tools ├── config.R └── msrv.R └── vignettes ├── .gitignore ├── articles ├── benchmarking_i5.Rmd ├── benchmarking_i5_orig.Rmd.orig ├── benchmarking_i7.Rmd ├── benchmarking_i7_orig.Rmd.orig ├── benchmarking_m1.Rmd ├── benchmarking_m1_orig.Rmd.orig ├── benchmarking_m4.Rmd ├── benchmarking_m4_orig.Rmd.orig └── figure │ ├── benchmark_i5_a-1.png │ ├── benchmark_i5_b-1.png │ ├── benchmark_i5_c-1.png │ ├── benchmark_i5_d-1.png │ ├── benchmark_i7_a-1.png │ ├── benchmark_i7_b-1.png │ ├── benchmark_i7_c-1.png │ ├── benchmark_i7_d-1.png │ ├── benchmark_m1_a-1.png │ ├── benchmark_m1_b-1.png │ ├── benchmark_m1_c-1.png │ ├── benchmark_m1_d-1.png │ ├── benchmark_m4_a-1.png │ ├── benchmark_m4_b-1.png │ ├── benchmark_m4_c-1.png │ └── benchmark_m4_d-1.png ├── getting_started.Rmd ├── img ├── addin_1.png └── addin_2.png └── multiregional_analysis.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/requirements.txt: -------------------------------------------------------------------------------- 1 | radian -------------------------------------------------------------------------------- /.devcontainer/setup_rust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/.devcontainer/setup_rust.sh -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/Rust-fail-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/.github/workflows/Rust-fail-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/.lintr -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2024 2 | COPYRIGHT HOLDER: Alberson Miranda 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/R/addin.R -------------------------------------------------------------------------------- /R/br_2020.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/R/br_2020.R -------------------------------------------------------------------------------- /R/extendr-wrappers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/R/extendr-wrappers.R -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/R/helpers.R -------------------------------------------------------------------------------- /R/import_iom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/R/import_iom.R -------------------------------------------------------------------------------- /R/miom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/R/miom.R -------------------------------------------------------------------------------- /R/r6.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/R/r6.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/world_2000.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/R/world_2000.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cleanup: -------------------------------------------------------------------------------- 1 | rm -f src/Makevars 2 | -------------------------------------------------------------------------------- /cleanup.win: -------------------------------------------------------------------------------- 1 | rm -f src/Makevars.win 2 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/codecov.yml -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/configure -------------------------------------------------------------------------------- /configure.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/configure.win -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/br_2020.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/data-raw/br_2020.R -------------------------------------------------------------------------------- /data-raw/world_2000.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/data-raw/world_2000.R -------------------------------------------------------------------------------- /data/br_2020.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/data/br_2020.rda -------------------------------------------------------------------------------- /data/world_2000.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/data/world_2000.rda -------------------------------------------------------------------------------- /inst/REFERENCES.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/inst/REFERENCES.bib -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/addins/fio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/inst/addins/fio.css -------------------------------------------------------------------------------- /inst/extdata/iom/br/2020.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/inst/extdata/iom/br/2020.xlsx -------------------------------------------------------------------------------- /inst/extdata/iom/world/2000.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/inst/extdata/iom/world/2000.xlsx -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /man/br_2020.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/man/br_2020.Rd -------------------------------------------------------------------------------- /man/download_wiod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/man/download_wiod.Rd -------------------------------------------------------------------------------- /man/figures/example_leontief_inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/man/figures/example_leontief_inverse.png -------------------------------------------------------------------------------- /man/figures/leontief.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/man/figures/leontief.jpg -------------------------------------------------------------------------------- /man/fio_addin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/man/fio_addin.Rd -------------------------------------------------------------------------------- /man/import_element.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/man/import_element.Rd -------------------------------------------------------------------------------- /man/iom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/man/iom.Rd -------------------------------------------------------------------------------- /man/miom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/man/miom.Rd -------------------------------------------------------------------------------- /man/world_2000.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/man/world_2000.Rd -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/src/Makevars.in -------------------------------------------------------------------------------- /src/Makevars.win.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/src/Makevars.win.in -------------------------------------------------------------------------------- /src/entrypoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/src/entrypoint.c -------------------------------------------------------------------------------- /src/fio-win.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | R_init_fio 3 | -------------------------------------------------------------------------------- /src/rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/src/rust/Cargo.lock -------------------------------------------------------------------------------- /src/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/src/rust/Cargo.toml -------------------------------------------------------------------------------- /src/rust/src/download.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/src/rust/src/download.rs -------------------------------------------------------------------------------- /src/rust/src/extraction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/src/rust/src/extraction.rs -------------------------------------------------------------------------------- /src/rust/src/ghosh.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/src/rust/src/ghosh.rs -------------------------------------------------------------------------------- /src/rust/src/influence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/src/rust/src/influence.rs -------------------------------------------------------------------------------- /src/rust/src/leontief.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/src/rust/src/leontief.rs -------------------------------------------------------------------------------- /src/rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/src/rust/src/lib.rs -------------------------------------------------------------------------------- /src/rust/src/linkages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/src/rust/src/linkages.rs -------------------------------------------------------------------------------- /src/rust/src/multipliers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/src/rust/src/multipliers.rs -------------------------------------------------------------------------------- /src/rust/src/parallel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/src/rust/src/parallel.rs -------------------------------------------------------------------------------- /src/rust/vendor-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/src/rust/vendor-config.toml -------------------------------------------------------------------------------- /src/rust/vendor.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/src/rust/vendor.tar.xz -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/tests/spelling.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/tests/testthat/test-addin.R -------------------------------------------------------------------------------- /tests/testthat/test-computations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/tests/testthat/test-computations.R -------------------------------------------------------------------------------- /tests/testthat/test-empty-urls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/tests/testthat/test-empty-urls.R -------------------------------------------------------------------------------- /tests/testthat/test-helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/tests/testthat/test-helpers.R -------------------------------------------------------------------------------- /tests/testthat/test-iom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/tests/testthat/test-iom.R -------------------------------------------------------------------------------- /tests/testthat/test-miom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/tests/testthat/test-miom.R -------------------------------------------------------------------------------- /tools/config.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/tools/config.R -------------------------------------------------------------------------------- /tools/msrv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/tools/msrv.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/articles/benchmarking_i5.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/benchmarking_i5.Rmd -------------------------------------------------------------------------------- /vignettes/articles/benchmarking_i5_orig.Rmd.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/benchmarking_i5_orig.Rmd.orig -------------------------------------------------------------------------------- /vignettes/articles/benchmarking_i7.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/benchmarking_i7.Rmd -------------------------------------------------------------------------------- /vignettes/articles/benchmarking_i7_orig.Rmd.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/benchmarking_i7_orig.Rmd.orig -------------------------------------------------------------------------------- /vignettes/articles/benchmarking_m1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/benchmarking_m1.Rmd -------------------------------------------------------------------------------- /vignettes/articles/benchmarking_m1_orig.Rmd.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/benchmarking_m1_orig.Rmd.orig -------------------------------------------------------------------------------- /vignettes/articles/benchmarking_m4.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/benchmarking_m4.Rmd -------------------------------------------------------------------------------- /vignettes/articles/benchmarking_m4_orig.Rmd.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/benchmarking_m4_orig.Rmd.orig -------------------------------------------------------------------------------- /vignettes/articles/figure/benchmark_i5_a-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/figure/benchmark_i5_a-1.png -------------------------------------------------------------------------------- /vignettes/articles/figure/benchmark_i5_b-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/figure/benchmark_i5_b-1.png -------------------------------------------------------------------------------- /vignettes/articles/figure/benchmark_i5_c-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/figure/benchmark_i5_c-1.png -------------------------------------------------------------------------------- /vignettes/articles/figure/benchmark_i5_d-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/figure/benchmark_i5_d-1.png -------------------------------------------------------------------------------- /vignettes/articles/figure/benchmark_i7_a-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/figure/benchmark_i7_a-1.png -------------------------------------------------------------------------------- /vignettes/articles/figure/benchmark_i7_b-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/figure/benchmark_i7_b-1.png -------------------------------------------------------------------------------- /vignettes/articles/figure/benchmark_i7_c-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/figure/benchmark_i7_c-1.png -------------------------------------------------------------------------------- /vignettes/articles/figure/benchmark_i7_d-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/figure/benchmark_i7_d-1.png -------------------------------------------------------------------------------- /vignettes/articles/figure/benchmark_m1_a-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/figure/benchmark_m1_a-1.png -------------------------------------------------------------------------------- /vignettes/articles/figure/benchmark_m1_b-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/figure/benchmark_m1_b-1.png -------------------------------------------------------------------------------- /vignettes/articles/figure/benchmark_m1_c-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/figure/benchmark_m1_c-1.png -------------------------------------------------------------------------------- /vignettes/articles/figure/benchmark_m1_d-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/figure/benchmark_m1_d-1.png -------------------------------------------------------------------------------- /vignettes/articles/figure/benchmark_m4_a-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/figure/benchmark_m4_a-1.png -------------------------------------------------------------------------------- /vignettes/articles/figure/benchmark_m4_b-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/figure/benchmark_m4_b-1.png -------------------------------------------------------------------------------- /vignettes/articles/figure/benchmark_m4_c-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/figure/benchmark_m4_c-1.png -------------------------------------------------------------------------------- /vignettes/articles/figure/benchmark_m4_d-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/articles/figure/benchmark_m4_d-1.png -------------------------------------------------------------------------------- /vignettes/getting_started.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/getting_started.Rmd -------------------------------------------------------------------------------- /vignettes/img/addin_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/img/addin_1.png -------------------------------------------------------------------------------- /vignettes/img/addin_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/img/addin_2.png -------------------------------------------------------------------------------- /vignettes/multiregional_analysis.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albersonmiranda/fio/HEAD/vignettes/multiregional_analysis.Rmd --------------------------------------------------------------------------------