├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── check-standard.yaml │ └── pkgdown.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R ├── DenseMatrix.R ├── InfinitySparseMatrix.R ├── MCFSolutions.R ├── Ops.optmatch.dlist.R ├── Optmatch-package.R ├── RcppExports.R ├── abs.optmatch.dlist.R ├── boxplotMethods.R ├── caliper.R ├── complementarySlackness.R ├── data.R ├── deprecated.R ├── distUnion.R ├── edgelist.R ├── exactMatch.R ├── feasible.R ├── fill.NAs.R ├── fmatch.R ├── fullmatch.R ├── makedist.R ├── match_on.R ├── matched.R ├── matched.distances.R ├── matchfailed.R ├── max.controls.cap.R ├── mdist.R ├── min.controls.cap.R ├── optmatchS3.R ├── pairmatch.R ├── print.optmatch.R ├── print.optmatch.dlist.R ├── scores.R ├── solve_reg_fm_prob.R ├── solver.R ├── strata.R ├── stratumStructure.R ├── summary.ism.R ├── summary.optmatch.R ├── utilities.R ├── zzz.R └── zzzDistanceSpecification.R ├── README.md ├── _pkgdown.yml ├── check.R ├── cran-comments.md ├── data-raw └── plantdist.R ├── data ├── nuclearplants.rda └── plantdist.rda ├── demo ├── 00Index └── optmatch.r ├── developer_docs └── MCFSolutions.Rmd ├── inst ├── CITATION └── examples │ ├── antiExactMatch.R │ ├── caliper.R │ ├── fullmatch.R │ ├── makeInfinitySparseMatrix.R │ ├── match_on.R │ ├── pairmatch.R │ ├── print.optmatch.R │ └── subdim.R ├── load.R ├── man-roxygen └── ISMslotsTemplate.R ├── man ├── BlockedInfinitySparseMatrix-class.Rd ├── InfinitySparseMatrix-class.Rd ├── LEMON.Rd ├── antiExactMatch.Rd ├── as.InfinitySparseMatrix.Rd ├── as.list.BlockedInfinitySparseMatrix.Rd ├── c.optmatch.Rd ├── caliper-methods.Rd ├── caliperSize.Rd ├── caliperUpperBound.Rd ├── cbindrbind.Rd ├── compare_optmatch.Rd ├── dbind.Rd ├── dimnames-InfinitySparseMatrix.Rd ├── distUnion.Rd ├── edgelist.Rd ├── effectiveSampleSize.Rd ├── evaluate_primal.Rd ├── exactMatch.Rd ├── fill.NAs.Rd ├── findSubproblems.Rd ├── fmla2treatedblocking.Rd ├── fullmatch.Rd ├── getMaxProblemSize.Rd ├── hash_dist.Rd ├── ism.subset.Rd ├── ismBinaryOps.Rd ├── makeOptmatch.Rd ├── match_on-methods.Rd ├── match_on_szn_scale.Rd ├── matched.Rd ├── matched.distances.Rd ├── maxCaliper.Rd ├── mcf_c_fns.Rd ├── mdist.Rd ├── minExactMatch.Rd ├── minmaxctlcap.Rd ├── missing_x_msg.Rd ├── model.frame.svyglm.Rd ├── nuclearplants.Rd ├── num_eligible_matches-methods.Rd ├── optmatch-defunct.Rd ├── optmatch.Rd ├── optmatch_restrictions.Rd ├── optmatch_same_distance.Rd ├── pairmatch.Rd ├── plantdist.Rd ├── predict.CBPS.Rd ├── print.optmatch.Rd ├── revise_ArcInfo_nodelabels.Rd ├── scoreCaliper.Rd ├── scores.Rd ├── setFeasibilityConstants.Rd ├── setMaxProblemSize.Rd ├── setTryRecovery.Rd ├── show-BlockedInfinitySparseMatrix-method.Rd ├── show-InfinitySparseMatrix-method.Rd ├── sort.ism.Rd ├── standardization_scale.Rd ├── strata.Rd ├── stratumStructure.Rd ├── subdim-methods.Rd ├── subproblemSuccess.Rd ├── summary.ism.Rd ├── update.optmatch.Rd └── validDistanceSpecification.Rd ├── optmatch.Rproj ├── src ├── Makevars ├── RcppExports.cpp ├── cuseful.cc ├── cuseful.h ├── distances.cc ├── ism.cc ├── ism.h ├── optmatch_init.c ├── r_smahal.cc ├── r_smahal.h ├── smahal.cc ├── smahal.h └── subsetInfSparseMatrix.cc ├── tests ├── exporting-methods.R ├── testthat.R └── testthat │ ├── test.CBPS.R │ ├── test.DistanceSpecification.R │ ├── test.InfinitySparseMatrix.R │ ├── test.MCFSolutions.R │ ├── test.RItools.R │ ├── test.caliper.R │ ├── test.complementarySlackness.R │ ├── test.compute_mahal.R │ ├── test.distUnion.R │ ├── test.edgelist.R │ ├── test.exactMatch.R │ ├── test.exporting-methods.R │ ├── test.feasible.R │ ├── test.fill.NAs.R │ ├── test.fmatch.R │ ├── test.fullmatch.R │ ├── test.fullmatch.infeasible.recovery.R │ ├── test.mahal-dist.R │ ├── test.makedist.R │ ├── test.match_on.R │ ├── test.maxControlsCap.R │ ├── test.moremethods.optmatch.R │ ├── test.notforCRAN.R │ ├── test.optimality.R │ ├── test.optmatchS3.R │ ├── test.pairmatch.R │ ├── test.pairmatch.old.R │ ├── test.rank.mahal.R │ ├── test.scores.R │ ├── test.solve_reg_fm_prob.R │ ├── test.strata.R │ ├── test.stratumStructure.R │ ├── test.stratumStructure.old.R │ ├── test.summary.ism.R │ ├── test.summary.optmatch.R │ ├── test.summary.optmatch.old.R │ ├── test.utilities.R │ ├── utilities.R │ └── wishlist.scores.R └── vignettes ├── fullmatch-vignette.Rmd ├── hansenKlopfer2006JCGSfig2.png ├── matching-from-foreign-software.Rmd ├── matching-within-subgroups.Rmd └── performance.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/check-standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/.github/workflows/check-standard.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2022 2 | COPYRIGHT HOLDER: optmatch authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/DenseMatrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/DenseMatrix.R -------------------------------------------------------------------------------- /R/InfinitySparseMatrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/InfinitySparseMatrix.R -------------------------------------------------------------------------------- /R/MCFSolutions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/MCFSolutions.R -------------------------------------------------------------------------------- /R/Ops.optmatch.dlist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/Ops.optmatch.dlist.R -------------------------------------------------------------------------------- /R/Optmatch-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/Optmatch-package.R -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/abs.optmatch.dlist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/abs.optmatch.dlist.R -------------------------------------------------------------------------------- /R/boxplotMethods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/boxplotMethods.R -------------------------------------------------------------------------------- /R/caliper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/caliper.R -------------------------------------------------------------------------------- /R/complementarySlackness.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/complementarySlackness.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/data.R -------------------------------------------------------------------------------- /R/deprecated.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/deprecated.R -------------------------------------------------------------------------------- /R/distUnion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/distUnion.R -------------------------------------------------------------------------------- /R/edgelist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/edgelist.R -------------------------------------------------------------------------------- /R/exactMatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/exactMatch.R -------------------------------------------------------------------------------- /R/feasible.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/feasible.R -------------------------------------------------------------------------------- /R/fill.NAs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/fill.NAs.R -------------------------------------------------------------------------------- /R/fmatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/fmatch.R -------------------------------------------------------------------------------- /R/fullmatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/fullmatch.R -------------------------------------------------------------------------------- /R/makedist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/makedist.R -------------------------------------------------------------------------------- /R/match_on.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/match_on.R -------------------------------------------------------------------------------- /R/matched.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/matched.R -------------------------------------------------------------------------------- /R/matched.distances.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/matched.distances.R -------------------------------------------------------------------------------- /R/matchfailed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/matchfailed.R -------------------------------------------------------------------------------- /R/max.controls.cap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/max.controls.cap.R -------------------------------------------------------------------------------- /R/mdist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/mdist.R -------------------------------------------------------------------------------- /R/min.controls.cap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/min.controls.cap.R -------------------------------------------------------------------------------- /R/optmatchS3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/optmatchS3.R -------------------------------------------------------------------------------- /R/pairmatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/pairmatch.R -------------------------------------------------------------------------------- /R/print.optmatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/print.optmatch.R -------------------------------------------------------------------------------- /R/print.optmatch.dlist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/print.optmatch.dlist.R -------------------------------------------------------------------------------- /R/scores.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/scores.R -------------------------------------------------------------------------------- /R/solve_reg_fm_prob.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/solve_reg_fm_prob.R -------------------------------------------------------------------------------- /R/solver.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/solver.R -------------------------------------------------------------------------------- /R/strata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/strata.R -------------------------------------------------------------------------------- /R/stratumStructure.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/stratumStructure.R -------------------------------------------------------------------------------- /R/summary.ism.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/summary.ism.R -------------------------------------------------------------------------------- /R/summary.optmatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/summary.optmatch.R -------------------------------------------------------------------------------- /R/utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/utilities.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/zzz.R -------------------------------------------------------------------------------- /R/zzzDistanceSpecification.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/R/zzzDistanceSpecification.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /check.R: -------------------------------------------------------------------------------- 1 | options(repos = c(CRAN="http://cran.r-project.org")) 2 | -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/plantdist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/data-raw/plantdist.R -------------------------------------------------------------------------------- /data/nuclearplants.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/data/nuclearplants.rda -------------------------------------------------------------------------------- /data/plantdist.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/data/plantdist.rda -------------------------------------------------------------------------------- /demo/00Index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/demo/00Index -------------------------------------------------------------------------------- /demo/optmatch.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/demo/optmatch.r -------------------------------------------------------------------------------- /developer_docs/MCFSolutions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/developer_docs/MCFSolutions.Rmd -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/examples/antiExactMatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/inst/examples/antiExactMatch.R -------------------------------------------------------------------------------- /inst/examples/caliper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/inst/examples/caliper.R -------------------------------------------------------------------------------- /inst/examples/fullmatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/inst/examples/fullmatch.R -------------------------------------------------------------------------------- /inst/examples/makeInfinitySparseMatrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/inst/examples/makeInfinitySparseMatrix.R -------------------------------------------------------------------------------- /inst/examples/match_on.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/inst/examples/match_on.R -------------------------------------------------------------------------------- /inst/examples/pairmatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/inst/examples/pairmatch.R -------------------------------------------------------------------------------- /inst/examples/print.optmatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/inst/examples/print.optmatch.R -------------------------------------------------------------------------------- /inst/examples/subdim.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/inst/examples/subdim.R -------------------------------------------------------------------------------- /load.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/load.R -------------------------------------------------------------------------------- /man-roxygen/ISMslotsTemplate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man-roxygen/ISMslotsTemplate.R -------------------------------------------------------------------------------- /man/BlockedInfinitySparseMatrix-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/BlockedInfinitySparseMatrix-class.Rd -------------------------------------------------------------------------------- /man/InfinitySparseMatrix-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/InfinitySparseMatrix-class.Rd -------------------------------------------------------------------------------- /man/LEMON.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/LEMON.Rd -------------------------------------------------------------------------------- /man/antiExactMatch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/antiExactMatch.Rd -------------------------------------------------------------------------------- /man/as.InfinitySparseMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/as.InfinitySparseMatrix.Rd -------------------------------------------------------------------------------- /man/as.list.BlockedInfinitySparseMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/as.list.BlockedInfinitySparseMatrix.Rd -------------------------------------------------------------------------------- /man/c.optmatch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/c.optmatch.Rd -------------------------------------------------------------------------------- /man/caliper-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/caliper-methods.Rd -------------------------------------------------------------------------------- /man/caliperSize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/caliperSize.Rd -------------------------------------------------------------------------------- /man/caliperUpperBound.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/caliperUpperBound.Rd -------------------------------------------------------------------------------- /man/cbindrbind.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/cbindrbind.Rd -------------------------------------------------------------------------------- /man/compare_optmatch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/compare_optmatch.Rd -------------------------------------------------------------------------------- /man/dbind.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/dbind.Rd -------------------------------------------------------------------------------- /man/dimnames-InfinitySparseMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/dimnames-InfinitySparseMatrix.Rd -------------------------------------------------------------------------------- /man/distUnion.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/distUnion.Rd -------------------------------------------------------------------------------- /man/edgelist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/edgelist.Rd -------------------------------------------------------------------------------- /man/effectiveSampleSize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/effectiveSampleSize.Rd -------------------------------------------------------------------------------- /man/evaluate_primal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/evaluate_primal.Rd -------------------------------------------------------------------------------- /man/exactMatch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/exactMatch.Rd -------------------------------------------------------------------------------- /man/fill.NAs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/fill.NAs.Rd -------------------------------------------------------------------------------- /man/findSubproblems.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/findSubproblems.Rd -------------------------------------------------------------------------------- /man/fmla2treatedblocking.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/fmla2treatedblocking.Rd -------------------------------------------------------------------------------- /man/fullmatch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/fullmatch.Rd -------------------------------------------------------------------------------- /man/getMaxProblemSize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/getMaxProblemSize.Rd -------------------------------------------------------------------------------- /man/hash_dist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/hash_dist.Rd -------------------------------------------------------------------------------- /man/ism.subset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/ism.subset.Rd -------------------------------------------------------------------------------- /man/ismBinaryOps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/ismBinaryOps.Rd -------------------------------------------------------------------------------- /man/makeOptmatch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/makeOptmatch.Rd -------------------------------------------------------------------------------- /man/match_on-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/match_on-methods.Rd -------------------------------------------------------------------------------- /man/match_on_szn_scale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/match_on_szn_scale.Rd -------------------------------------------------------------------------------- /man/matched.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/matched.Rd -------------------------------------------------------------------------------- /man/matched.distances.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/matched.distances.Rd -------------------------------------------------------------------------------- /man/maxCaliper.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/maxCaliper.Rd -------------------------------------------------------------------------------- /man/mcf_c_fns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/mcf_c_fns.Rd -------------------------------------------------------------------------------- /man/mdist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/mdist.Rd -------------------------------------------------------------------------------- /man/minExactMatch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/minExactMatch.Rd -------------------------------------------------------------------------------- /man/minmaxctlcap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/minmaxctlcap.Rd -------------------------------------------------------------------------------- /man/missing_x_msg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/missing_x_msg.Rd -------------------------------------------------------------------------------- /man/model.frame.svyglm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/model.frame.svyglm.Rd -------------------------------------------------------------------------------- /man/nuclearplants.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/nuclearplants.Rd -------------------------------------------------------------------------------- /man/num_eligible_matches-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/num_eligible_matches-methods.Rd -------------------------------------------------------------------------------- /man/optmatch-defunct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/optmatch-defunct.Rd -------------------------------------------------------------------------------- /man/optmatch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/optmatch.Rd -------------------------------------------------------------------------------- /man/optmatch_restrictions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/optmatch_restrictions.Rd -------------------------------------------------------------------------------- /man/optmatch_same_distance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/optmatch_same_distance.Rd -------------------------------------------------------------------------------- /man/pairmatch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/pairmatch.Rd -------------------------------------------------------------------------------- /man/plantdist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/plantdist.Rd -------------------------------------------------------------------------------- /man/predict.CBPS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/predict.CBPS.Rd -------------------------------------------------------------------------------- /man/print.optmatch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/print.optmatch.Rd -------------------------------------------------------------------------------- /man/revise_ArcInfo_nodelabels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/revise_ArcInfo_nodelabels.Rd -------------------------------------------------------------------------------- /man/scoreCaliper.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/scoreCaliper.Rd -------------------------------------------------------------------------------- /man/scores.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/scores.Rd -------------------------------------------------------------------------------- /man/setFeasibilityConstants.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/setFeasibilityConstants.Rd -------------------------------------------------------------------------------- /man/setMaxProblemSize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/setMaxProblemSize.Rd -------------------------------------------------------------------------------- /man/setTryRecovery.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/setTryRecovery.Rd -------------------------------------------------------------------------------- /man/show-BlockedInfinitySparseMatrix-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/show-BlockedInfinitySparseMatrix-method.Rd -------------------------------------------------------------------------------- /man/show-InfinitySparseMatrix-method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/show-InfinitySparseMatrix-method.Rd -------------------------------------------------------------------------------- /man/sort.ism.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/sort.ism.Rd -------------------------------------------------------------------------------- /man/standardization_scale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/standardization_scale.Rd -------------------------------------------------------------------------------- /man/strata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/strata.Rd -------------------------------------------------------------------------------- /man/stratumStructure.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/stratumStructure.Rd -------------------------------------------------------------------------------- /man/subdim-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/subdim-methods.Rd -------------------------------------------------------------------------------- /man/subproblemSuccess.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/subproblemSuccess.Rd -------------------------------------------------------------------------------- /man/summary.ism.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/summary.ism.Rd -------------------------------------------------------------------------------- /man/update.optmatch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/update.optmatch.Rd -------------------------------------------------------------------------------- /man/validDistanceSpecification.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/man/validDistanceSpecification.Rd -------------------------------------------------------------------------------- /optmatch.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/optmatch.Rproj -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/cuseful.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/src/cuseful.cc -------------------------------------------------------------------------------- /src/cuseful.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/src/cuseful.h -------------------------------------------------------------------------------- /src/distances.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/src/distances.cc -------------------------------------------------------------------------------- /src/ism.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/src/ism.cc -------------------------------------------------------------------------------- /src/ism.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/src/ism.h -------------------------------------------------------------------------------- /src/optmatch_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/src/optmatch_init.c -------------------------------------------------------------------------------- /src/r_smahal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/src/r_smahal.cc -------------------------------------------------------------------------------- /src/r_smahal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/src/r_smahal.h -------------------------------------------------------------------------------- /src/smahal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/src/smahal.cc -------------------------------------------------------------------------------- /src/smahal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/src/smahal.h -------------------------------------------------------------------------------- /src/subsetInfSparseMatrix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/src/subsetInfSparseMatrix.cc -------------------------------------------------------------------------------- /tests/exporting-methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/exporting-methods.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test.CBPS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.CBPS.R -------------------------------------------------------------------------------- /tests/testthat/test.DistanceSpecification.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.DistanceSpecification.R -------------------------------------------------------------------------------- /tests/testthat/test.InfinitySparseMatrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.InfinitySparseMatrix.R -------------------------------------------------------------------------------- /tests/testthat/test.MCFSolutions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.MCFSolutions.R -------------------------------------------------------------------------------- /tests/testthat/test.RItools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.RItools.R -------------------------------------------------------------------------------- /tests/testthat/test.caliper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.caliper.R -------------------------------------------------------------------------------- /tests/testthat/test.complementarySlackness.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.complementarySlackness.R -------------------------------------------------------------------------------- /tests/testthat/test.compute_mahal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.compute_mahal.R -------------------------------------------------------------------------------- /tests/testthat/test.distUnion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.distUnion.R -------------------------------------------------------------------------------- /tests/testthat/test.edgelist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.edgelist.R -------------------------------------------------------------------------------- /tests/testthat/test.exactMatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.exactMatch.R -------------------------------------------------------------------------------- /tests/testthat/test.exporting-methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.exporting-methods.R -------------------------------------------------------------------------------- /tests/testthat/test.feasible.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.feasible.R -------------------------------------------------------------------------------- /tests/testthat/test.fill.NAs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.fill.NAs.R -------------------------------------------------------------------------------- /tests/testthat/test.fmatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.fmatch.R -------------------------------------------------------------------------------- /tests/testthat/test.fullmatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.fullmatch.R -------------------------------------------------------------------------------- /tests/testthat/test.fullmatch.infeasible.recovery.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.fullmatch.infeasible.recovery.R -------------------------------------------------------------------------------- /tests/testthat/test.mahal-dist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.mahal-dist.R -------------------------------------------------------------------------------- /tests/testthat/test.makedist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.makedist.R -------------------------------------------------------------------------------- /tests/testthat/test.match_on.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.match_on.R -------------------------------------------------------------------------------- /tests/testthat/test.maxControlsCap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.maxControlsCap.R -------------------------------------------------------------------------------- /tests/testthat/test.moremethods.optmatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.moremethods.optmatch.R -------------------------------------------------------------------------------- /tests/testthat/test.notforCRAN.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.notforCRAN.R -------------------------------------------------------------------------------- /tests/testthat/test.optimality.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.optimality.R -------------------------------------------------------------------------------- /tests/testthat/test.optmatchS3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.optmatchS3.R -------------------------------------------------------------------------------- /tests/testthat/test.pairmatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.pairmatch.R -------------------------------------------------------------------------------- /tests/testthat/test.pairmatch.old.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.pairmatch.old.R -------------------------------------------------------------------------------- /tests/testthat/test.rank.mahal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.rank.mahal.R -------------------------------------------------------------------------------- /tests/testthat/test.scores.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.scores.R -------------------------------------------------------------------------------- /tests/testthat/test.solve_reg_fm_prob.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.solve_reg_fm_prob.R -------------------------------------------------------------------------------- /tests/testthat/test.strata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.strata.R -------------------------------------------------------------------------------- /tests/testthat/test.stratumStructure.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.stratumStructure.R -------------------------------------------------------------------------------- /tests/testthat/test.stratumStructure.old.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.stratumStructure.old.R -------------------------------------------------------------------------------- /tests/testthat/test.summary.ism.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.summary.ism.R -------------------------------------------------------------------------------- /tests/testthat/test.summary.optmatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.summary.optmatch.R -------------------------------------------------------------------------------- /tests/testthat/test.summary.optmatch.old.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.summary.optmatch.old.R -------------------------------------------------------------------------------- /tests/testthat/test.utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/test.utilities.R -------------------------------------------------------------------------------- /tests/testthat/utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/utilities.R -------------------------------------------------------------------------------- /tests/testthat/wishlist.scores.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/tests/testthat/wishlist.scores.R -------------------------------------------------------------------------------- /vignettes/fullmatch-vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/vignettes/fullmatch-vignette.Rmd -------------------------------------------------------------------------------- /vignettes/hansenKlopfer2006JCGSfig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/vignettes/hansenKlopfer2006JCGSfig2.png -------------------------------------------------------------------------------- /vignettes/matching-from-foreign-software.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/vignettes/matching-from-foreign-software.Rmd -------------------------------------------------------------------------------- /vignettes/matching-within-subgroups.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/vignettes/matching-within-subgroups.Rmd -------------------------------------------------------------------------------- /vignettes/performance.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmfredrickson/optmatch/HEAD/vignettes/performance.Rmd --------------------------------------------------------------------------------