├── .gitignore ├── CondIndTests ├── .Rbuildignore ├── DESCRIPTION ├── NAMESPACE ├── R │ ├── InvariantConditionalQuantilePrediction.R │ ├── InvariantEnvironmentPrediction.R │ ├── InvariantResidualDistributionTest.R │ ├── InvariantTargetPrediction.R │ ├── KCI.R │ ├── ResidualPredictionTest.R │ ├── computeBasis.R │ ├── condIndTest.R │ ├── covariance.R │ ├── dist2.R │ ├── fTestTargetY.R │ ├── fishersTestExceedance.R │ ├── gamResidualDistributions.R │ ├── gamTargetY.R │ ├── getgam.R │ ├── gpreg.R │ ├── helper_fcts.R │ ├── kernel.R │ ├── ksResidualDistributions.R │ ├── leveneAndWilcoxResidualDistributions.R │ ├── propTestTargetE.R │ ├── rfResidualDistributions.R │ ├── rfTargetY.R │ └── wilcoxTestTargetY.R ├── inst │ └── CITATION ├── man │ ├── InvariantConditionalQuantilePrediction.Rd │ ├── InvariantEnvironmentPrediction.Rd │ ├── InvariantResidualDistributionTest.Rd │ ├── InvariantTargetPrediction.Rd │ ├── KCI.Rd │ ├── ResidualPredictionTest.Rd │ ├── condIndTest.Rd │ ├── fTestTargetY.Rd │ ├── fishersTestExceedance.Rd │ ├── ksResidualDistributions.Rd │ ├── leveneAndWilcoxResidualDistributions.Rd │ ├── propTestTargetE.Rd │ └── wilcoxTestTargetY.Rd └── tests │ ├── testthat.R │ └── testthat │ └── test_output.R ├── README.md ├── nonlinearICP ├── .Rbuildignore ├── DESCRIPTION ├── NAMESPACE ├── R │ ├── computeDefiningSets.R │ ├── computeSetIntersection.R │ ├── getAcceptedSetsForLevel.R │ ├── getPValueAndDecision.R │ ├── getblanketall.R │ ├── nonlinearICP.R │ ├── summary.nonlinICP.class.R │ └── varSelectionRF.R ├── data │ └── simData.RData ├── inst │ └── CITATION ├── man │ ├── nonlinearICP.Rd │ ├── simData.Rd │ ├── summary.nonlinICP.class.Rd │ └── varSelectionRF.Rd └── tests │ ├── testthat.R │ └── testthat │ └── test_nonlinearICP_defaults_all_methods.R └── todo.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/.gitignore -------------------------------------------------------------------------------- /CondIndTests/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/.Rbuildignore -------------------------------------------------------------------------------- /CondIndTests/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/DESCRIPTION -------------------------------------------------------------------------------- /CondIndTests/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/NAMESPACE -------------------------------------------------------------------------------- /CondIndTests/R/InvariantConditionalQuantilePrediction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/InvariantConditionalQuantilePrediction.R -------------------------------------------------------------------------------- /CondIndTests/R/InvariantEnvironmentPrediction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/InvariantEnvironmentPrediction.R -------------------------------------------------------------------------------- /CondIndTests/R/InvariantResidualDistributionTest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/InvariantResidualDistributionTest.R -------------------------------------------------------------------------------- /CondIndTests/R/InvariantTargetPrediction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/InvariantTargetPrediction.R -------------------------------------------------------------------------------- /CondIndTests/R/KCI.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/KCI.R -------------------------------------------------------------------------------- /CondIndTests/R/ResidualPredictionTest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/ResidualPredictionTest.R -------------------------------------------------------------------------------- /CondIndTests/R/computeBasis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/computeBasis.R -------------------------------------------------------------------------------- /CondIndTests/R/condIndTest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/condIndTest.R -------------------------------------------------------------------------------- /CondIndTests/R/covariance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/covariance.R -------------------------------------------------------------------------------- /CondIndTests/R/dist2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/dist2.R -------------------------------------------------------------------------------- /CondIndTests/R/fTestTargetY.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/fTestTargetY.R -------------------------------------------------------------------------------- /CondIndTests/R/fishersTestExceedance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/fishersTestExceedance.R -------------------------------------------------------------------------------- /CondIndTests/R/gamResidualDistributions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/gamResidualDistributions.R -------------------------------------------------------------------------------- /CondIndTests/R/gamTargetY.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/gamTargetY.R -------------------------------------------------------------------------------- /CondIndTests/R/getgam.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/getgam.R -------------------------------------------------------------------------------- /CondIndTests/R/gpreg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/gpreg.R -------------------------------------------------------------------------------- /CondIndTests/R/helper_fcts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/helper_fcts.R -------------------------------------------------------------------------------- /CondIndTests/R/kernel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/kernel.R -------------------------------------------------------------------------------- /CondIndTests/R/ksResidualDistributions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/ksResidualDistributions.R -------------------------------------------------------------------------------- /CondIndTests/R/leveneAndWilcoxResidualDistributions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/leveneAndWilcoxResidualDistributions.R -------------------------------------------------------------------------------- /CondIndTests/R/propTestTargetE.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/propTestTargetE.R -------------------------------------------------------------------------------- /CondIndTests/R/rfResidualDistributions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/rfResidualDistributions.R -------------------------------------------------------------------------------- /CondIndTests/R/rfTargetY.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/rfTargetY.R -------------------------------------------------------------------------------- /CondIndTests/R/wilcoxTestTargetY.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/R/wilcoxTestTargetY.R -------------------------------------------------------------------------------- /CondIndTests/inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/inst/CITATION -------------------------------------------------------------------------------- /CondIndTests/man/InvariantConditionalQuantilePrediction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/man/InvariantConditionalQuantilePrediction.Rd -------------------------------------------------------------------------------- /CondIndTests/man/InvariantEnvironmentPrediction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/man/InvariantEnvironmentPrediction.Rd -------------------------------------------------------------------------------- /CondIndTests/man/InvariantResidualDistributionTest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/man/InvariantResidualDistributionTest.Rd -------------------------------------------------------------------------------- /CondIndTests/man/InvariantTargetPrediction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/man/InvariantTargetPrediction.Rd -------------------------------------------------------------------------------- /CondIndTests/man/KCI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/man/KCI.Rd -------------------------------------------------------------------------------- /CondIndTests/man/ResidualPredictionTest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/man/ResidualPredictionTest.Rd -------------------------------------------------------------------------------- /CondIndTests/man/condIndTest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/man/condIndTest.Rd -------------------------------------------------------------------------------- /CondIndTests/man/fTestTargetY.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/man/fTestTargetY.Rd -------------------------------------------------------------------------------- /CondIndTests/man/fishersTestExceedance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/man/fishersTestExceedance.Rd -------------------------------------------------------------------------------- /CondIndTests/man/ksResidualDistributions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/man/ksResidualDistributions.Rd -------------------------------------------------------------------------------- /CondIndTests/man/leveneAndWilcoxResidualDistributions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/man/leveneAndWilcoxResidualDistributions.Rd -------------------------------------------------------------------------------- /CondIndTests/man/propTestTargetE.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/man/propTestTargetE.Rd -------------------------------------------------------------------------------- /CondIndTests/man/wilcoxTestTargetY.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/man/wilcoxTestTargetY.Rd -------------------------------------------------------------------------------- /CondIndTests/tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/tests/testthat.R -------------------------------------------------------------------------------- /CondIndTests/tests/testthat/test_output.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/CondIndTests/tests/testthat/test_output.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/README.md -------------------------------------------------------------------------------- /nonlinearICP/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/.Rbuildignore -------------------------------------------------------------------------------- /nonlinearICP/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/DESCRIPTION -------------------------------------------------------------------------------- /nonlinearICP/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/NAMESPACE -------------------------------------------------------------------------------- /nonlinearICP/R/computeDefiningSets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/R/computeDefiningSets.R -------------------------------------------------------------------------------- /nonlinearICP/R/computeSetIntersection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/R/computeSetIntersection.R -------------------------------------------------------------------------------- /nonlinearICP/R/getAcceptedSetsForLevel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/R/getAcceptedSetsForLevel.R -------------------------------------------------------------------------------- /nonlinearICP/R/getPValueAndDecision.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/R/getPValueAndDecision.R -------------------------------------------------------------------------------- /nonlinearICP/R/getblanketall.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/R/getblanketall.R -------------------------------------------------------------------------------- /nonlinearICP/R/nonlinearICP.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/R/nonlinearICP.R -------------------------------------------------------------------------------- /nonlinearICP/R/summary.nonlinICP.class.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/R/summary.nonlinICP.class.R -------------------------------------------------------------------------------- /nonlinearICP/R/varSelectionRF.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/R/varSelectionRF.R -------------------------------------------------------------------------------- /nonlinearICP/data/simData.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/data/simData.RData -------------------------------------------------------------------------------- /nonlinearICP/inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/inst/CITATION -------------------------------------------------------------------------------- /nonlinearICP/man/nonlinearICP.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/man/nonlinearICP.Rd -------------------------------------------------------------------------------- /nonlinearICP/man/simData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/man/simData.Rd -------------------------------------------------------------------------------- /nonlinearICP/man/summary.nonlinICP.class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/man/summary.nonlinICP.class.Rd -------------------------------------------------------------------------------- /nonlinearICP/man/varSelectionRF.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/man/varSelectionRF.Rd -------------------------------------------------------------------------------- /nonlinearICP/tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/tests/testthat.R -------------------------------------------------------------------------------- /nonlinearICP/tests/testthat/test_nonlinearICP_defaults_all_methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/nonlinearICP/tests/testthat/test_nonlinearICP_defaults_all_methods.R -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christinaheinze/nonlinearICP-and-CondIndTests/HEAD/todo.md --------------------------------------------------------------------------------