├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE.md ├── LICENSE.note ├── NAMESPACE ├── NEWS.md ├── R ├── class_generics_and_maybes.R ├── class_spflow_model.R ├── class_spflow_network.R ├── class_spflow_network_meta.R ├── class_spflow_network_multi.R ├── class_spflow_network_pair.R ├── cor_image.R ├── example_data.R ├── fit_spflow_mcmc.R ├── fit_spflow_mle.R ├── fit_spflow_mle_hessian.R ├── fit_spflow_ols.R ├── fit_spflow_s2sls.R ├── map_flows.R ├── spflow.R ├── spflow_control.R ├── spflow_estimation.R ├── spflow_formula.R ├── spflow_impacts.R ├── spflow_indicators.R ├── spflow_logdet.R ├── spflow_matrices.R ├── spflow_moments.R ├── spflow_neighborhood.R ├── spflow_package.R ├── spflow_predictors.R ├── spflow_refit.R ├── spflow_simulations.R ├── spflow_spatial_lags.R ├── utils.R └── utils_error.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── data-raw ├── .gitignore ├── 01_sim_data__germany_16_states.R ├── 02_sim_data__usa_51_states.R ├── 03_sim_data__spflow_network_pair.R ├── 04_sim_data__parameters.R ├── 05_sim_data__flows.R ├── 06_paris10km-data.R └── helpers_sim-data.R ├── data ├── germany_grid.rda ├── germany_net.rda ├── multi_net_usa_ge.rda ├── paris10km_commuteflows.rda ├── paris10km_municipalities.rda ├── paris10km_neighborhood.rda ├── simulation_params.rda ├── usa_grid.rda └── usa_net.rda ├── graphics ├── SPFLOW-CHART.pdf └── SPFLOW-CHART.svg ├── inst ├── CITATION ├── REFERENCES.bib ├── WORDLIST └── tinytest │ ├── test_class_spflow_network.R │ ├── test_class_spflow_network_multi.R │ ├── test_class_spflow_network_pair.R │ ├── test_spflow_control.R │ ├── test_spflow_formula.R │ ├── test_spflow_indicators.R │ ├── test_spflow_logdet.R │ ├── test_spflow_matrices.R │ ├── test_spflow_neighborhood.R │ ├── test_spflow_predictors.R │ ├── test_spflow_spatial_lags.R │ └── test_utils.R ├── man ├── assertions_and_primitives.Rd ├── compare_results.Rd ├── cor_image.Rd ├── derive_logdet_calculator.Rd ├── derive_spflow_matrices.Rd ├── derive_spflow_moments.Rd ├── enhance_spflow_control.Rd ├── example_data.Rd ├── expand_spflow_neighborhood.Rd ├── figures │ └── logo.svg ├── impacts_matrix.Rd ├── map_flows.Rd ├── nb2Mat.Rd ├── pair_cor.Rd ├── pair_merge.Rd ├── paris_data.Rd ├── plot-spflow_model-method.Rd ├── predict.Rd ├── spflow-deprecated.Rd ├── spflow-package.Rd ├── spflow.Rd ├── spflow_control.Rd ├── spflow_generics.Rd ├── spflow_map.Rd ├── spflow_model-class.Rd ├── spflow_moran_plots.Rd ├── spflow_network-class.Rd ├── spflow_network.Rd ├── spflow_network_classes.Rd ├── spflow_network_multi-class.Rd ├── spflow_network_multi.Rd ├── spflow_network_pair-class.Rd ├── spflow_network_pair.Rd └── spflow_refit.Rd ├── spflow.Rproj ├── tests ├── acceptance │ └── test_acceptance__case_paris10km.R ├── integration │ ├── germany_inputs.rda │ ├── pair_neighborhoods_usa_ge.Rds │ ├── test_integration__case_1_square_cartesian.R │ ├── test_integration__case_2_square_noncartesian.R │ ├── test_integration__case_3_rectangular_cartesian.R │ ├── test_integration__case_4_rectangular_noncartesian.R │ └── vec_data_usa_ge.Rds └── tinytest.R └── vignettes ├── .gitignore └── paris_commute_flows.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE.note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/LICENSE.note -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/class_generics_and_maybes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/class_generics_and_maybes.R -------------------------------------------------------------------------------- /R/class_spflow_model.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/class_spflow_model.R -------------------------------------------------------------------------------- /R/class_spflow_network.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/class_spflow_network.R -------------------------------------------------------------------------------- /R/class_spflow_network_meta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/class_spflow_network_meta.R -------------------------------------------------------------------------------- /R/class_spflow_network_multi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/class_spflow_network_multi.R -------------------------------------------------------------------------------- /R/class_spflow_network_pair.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/class_spflow_network_pair.R -------------------------------------------------------------------------------- /R/cor_image.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/cor_image.R -------------------------------------------------------------------------------- /R/example_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/example_data.R -------------------------------------------------------------------------------- /R/fit_spflow_mcmc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/fit_spflow_mcmc.R -------------------------------------------------------------------------------- /R/fit_spflow_mle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/fit_spflow_mle.R -------------------------------------------------------------------------------- /R/fit_spflow_mle_hessian.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/fit_spflow_mle_hessian.R -------------------------------------------------------------------------------- /R/fit_spflow_ols.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/fit_spflow_ols.R -------------------------------------------------------------------------------- /R/fit_spflow_s2sls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/fit_spflow_s2sls.R -------------------------------------------------------------------------------- /R/map_flows.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/map_flows.R -------------------------------------------------------------------------------- /R/spflow.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/spflow.R -------------------------------------------------------------------------------- /R/spflow_control.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/spflow_control.R -------------------------------------------------------------------------------- /R/spflow_estimation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/spflow_estimation.R -------------------------------------------------------------------------------- /R/spflow_formula.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/spflow_formula.R -------------------------------------------------------------------------------- /R/spflow_impacts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/spflow_impacts.R -------------------------------------------------------------------------------- /R/spflow_indicators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/spflow_indicators.R -------------------------------------------------------------------------------- /R/spflow_logdet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/spflow_logdet.R -------------------------------------------------------------------------------- /R/spflow_matrices.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/spflow_matrices.R -------------------------------------------------------------------------------- /R/spflow_moments.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/spflow_moments.R -------------------------------------------------------------------------------- /R/spflow_neighborhood.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/spflow_neighborhood.R -------------------------------------------------------------------------------- /R/spflow_package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/spflow_package.R -------------------------------------------------------------------------------- /R/spflow_predictors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/spflow_predictors.R -------------------------------------------------------------------------------- /R/spflow_refit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/spflow_refit.R -------------------------------------------------------------------------------- /R/spflow_simulations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/spflow_simulations.R -------------------------------------------------------------------------------- /R/spflow_spatial_lags.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/spflow_spatial_lags.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/utils_error.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/R/utils_error.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/data-raw/.gitignore -------------------------------------------------------------------------------- /data-raw/01_sim_data__germany_16_states.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/data-raw/01_sim_data__germany_16_states.R -------------------------------------------------------------------------------- /data-raw/02_sim_data__usa_51_states.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/data-raw/02_sim_data__usa_51_states.R -------------------------------------------------------------------------------- /data-raw/03_sim_data__spflow_network_pair.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/data-raw/03_sim_data__spflow_network_pair.R -------------------------------------------------------------------------------- /data-raw/04_sim_data__parameters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/data-raw/04_sim_data__parameters.R -------------------------------------------------------------------------------- /data-raw/05_sim_data__flows.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/data-raw/05_sim_data__flows.R -------------------------------------------------------------------------------- /data-raw/06_paris10km-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/data-raw/06_paris10km-data.R -------------------------------------------------------------------------------- /data-raw/helpers_sim-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/data-raw/helpers_sim-data.R -------------------------------------------------------------------------------- /data/germany_grid.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/data/germany_grid.rda -------------------------------------------------------------------------------- /data/germany_net.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/data/germany_net.rda -------------------------------------------------------------------------------- /data/multi_net_usa_ge.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/data/multi_net_usa_ge.rda -------------------------------------------------------------------------------- /data/paris10km_commuteflows.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/data/paris10km_commuteflows.rda -------------------------------------------------------------------------------- /data/paris10km_municipalities.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/data/paris10km_municipalities.rda -------------------------------------------------------------------------------- /data/paris10km_neighborhood.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/data/paris10km_neighborhood.rda -------------------------------------------------------------------------------- /data/simulation_params.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/data/simulation_params.rda -------------------------------------------------------------------------------- /data/usa_grid.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/data/usa_grid.rda -------------------------------------------------------------------------------- /data/usa_net.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/data/usa_net.rda -------------------------------------------------------------------------------- /graphics/SPFLOW-CHART.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/graphics/SPFLOW-CHART.pdf -------------------------------------------------------------------------------- /graphics/SPFLOW-CHART.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/graphics/SPFLOW-CHART.svg -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/REFERENCES.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/inst/REFERENCES.bib -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/tinytest/test_class_spflow_network.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/inst/tinytest/test_class_spflow_network.R -------------------------------------------------------------------------------- /inst/tinytest/test_class_spflow_network_multi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/inst/tinytest/test_class_spflow_network_multi.R -------------------------------------------------------------------------------- /inst/tinytest/test_class_spflow_network_pair.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/inst/tinytest/test_class_spflow_network_pair.R -------------------------------------------------------------------------------- /inst/tinytest/test_spflow_control.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/inst/tinytest/test_spflow_control.R -------------------------------------------------------------------------------- /inst/tinytest/test_spflow_formula.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/inst/tinytest/test_spflow_formula.R -------------------------------------------------------------------------------- /inst/tinytest/test_spflow_indicators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/inst/tinytest/test_spflow_indicators.R -------------------------------------------------------------------------------- /inst/tinytest/test_spflow_logdet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/inst/tinytest/test_spflow_logdet.R -------------------------------------------------------------------------------- /inst/tinytest/test_spflow_matrices.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/inst/tinytest/test_spflow_matrices.R -------------------------------------------------------------------------------- /inst/tinytest/test_spflow_neighborhood.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/inst/tinytest/test_spflow_neighborhood.R -------------------------------------------------------------------------------- /inst/tinytest/test_spflow_predictors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/inst/tinytest/test_spflow_predictors.R -------------------------------------------------------------------------------- /inst/tinytest/test_spflow_spatial_lags.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/inst/tinytest/test_spflow_spatial_lags.R -------------------------------------------------------------------------------- /inst/tinytest/test_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/inst/tinytest/test_utils.R -------------------------------------------------------------------------------- /man/assertions_and_primitives.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/assertions_and_primitives.Rd -------------------------------------------------------------------------------- /man/compare_results.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/compare_results.Rd -------------------------------------------------------------------------------- /man/cor_image.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/cor_image.Rd -------------------------------------------------------------------------------- /man/derive_logdet_calculator.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/derive_logdet_calculator.Rd -------------------------------------------------------------------------------- /man/derive_spflow_matrices.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/derive_spflow_matrices.Rd -------------------------------------------------------------------------------- /man/derive_spflow_moments.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/derive_spflow_moments.Rd -------------------------------------------------------------------------------- /man/enhance_spflow_control.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/enhance_spflow_control.Rd -------------------------------------------------------------------------------- /man/example_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/example_data.Rd -------------------------------------------------------------------------------- /man/expand_spflow_neighborhood.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/expand_spflow_neighborhood.Rd -------------------------------------------------------------------------------- /man/figures/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/figures/logo.svg -------------------------------------------------------------------------------- /man/impacts_matrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/impacts_matrix.Rd -------------------------------------------------------------------------------- /man/map_flows.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/map_flows.Rd -------------------------------------------------------------------------------- /man/nb2Mat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/nb2Mat.Rd -------------------------------------------------------------------------------- /man/pair_cor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/pair_cor.Rd -------------------------------------------------------------------------------- /man/pair_merge.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/pair_merge.Rd -------------------------------------------------------------------------------- /man/paris_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/paris_data.Rd -------------------------------------------------------------------------------- /man/plot-spflow_model-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/plot-spflow_model-method.Rd -------------------------------------------------------------------------------- /man/predict.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/predict.Rd -------------------------------------------------------------------------------- /man/spflow-deprecated.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/spflow-deprecated.Rd -------------------------------------------------------------------------------- /man/spflow-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/spflow-package.Rd -------------------------------------------------------------------------------- /man/spflow.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/spflow.Rd -------------------------------------------------------------------------------- /man/spflow_control.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/spflow_control.Rd -------------------------------------------------------------------------------- /man/spflow_generics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/spflow_generics.Rd -------------------------------------------------------------------------------- /man/spflow_map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/spflow_map.Rd -------------------------------------------------------------------------------- /man/spflow_model-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/spflow_model-class.Rd -------------------------------------------------------------------------------- /man/spflow_moran_plots.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/spflow_moran_plots.Rd -------------------------------------------------------------------------------- /man/spflow_network-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/spflow_network-class.Rd -------------------------------------------------------------------------------- /man/spflow_network.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/spflow_network.Rd -------------------------------------------------------------------------------- /man/spflow_network_classes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/spflow_network_classes.Rd -------------------------------------------------------------------------------- /man/spflow_network_multi-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/spflow_network_multi-class.Rd -------------------------------------------------------------------------------- /man/spflow_network_multi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/spflow_network_multi.Rd -------------------------------------------------------------------------------- /man/spflow_network_pair-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/spflow_network_pair-class.Rd -------------------------------------------------------------------------------- /man/spflow_network_pair.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/spflow_network_pair.Rd -------------------------------------------------------------------------------- /man/spflow_refit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/man/spflow_refit.Rd -------------------------------------------------------------------------------- /spflow.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/spflow.Rproj -------------------------------------------------------------------------------- /tests/acceptance/test_acceptance__case_paris10km.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/tests/acceptance/test_acceptance__case_paris10km.R -------------------------------------------------------------------------------- /tests/integration/germany_inputs.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/tests/integration/germany_inputs.rda -------------------------------------------------------------------------------- /tests/integration/pair_neighborhoods_usa_ge.Rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/tests/integration/pair_neighborhoods_usa_ge.Rds -------------------------------------------------------------------------------- /tests/integration/test_integration__case_1_square_cartesian.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/tests/integration/test_integration__case_1_square_cartesian.R -------------------------------------------------------------------------------- /tests/integration/test_integration__case_2_square_noncartesian.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/tests/integration/test_integration__case_2_square_noncartesian.R -------------------------------------------------------------------------------- /tests/integration/test_integration__case_3_rectangular_cartesian.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/tests/integration/test_integration__case_3_rectangular_cartesian.R -------------------------------------------------------------------------------- /tests/integration/test_integration__case_4_rectangular_noncartesian.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/tests/integration/test_integration__case_4_rectangular_noncartesian.R -------------------------------------------------------------------------------- /tests/integration/vec_data_usa_ge.Rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/tests/integration/vec_data_usa_ge.Rds -------------------------------------------------------------------------------- /tests/tinytest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/tests/tinytest.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/paris_commute_flows.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeCe/spflow/HEAD/vignettes/paris_commute_flows.Rmd --------------------------------------------------------------------------------