├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── R ├── BestLinearProj.R ├── CheckHelpers.R ├── EnsemForest.R ├── EnsemTree.R ├── GenAugData.R ├── GenSimData.R ├── PlotForestImp.R ├── PlotForestPred.R ├── PlotTree.R ├── RcppExports.R └── SimDataLst.R ├── README.md ├── code_for_paper ├── R │ ├── AugDataCF.R │ ├── AugDataCT.R │ ├── EWMAwrap.R │ ├── EnsRF.R │ ├── EnsRT.R │ ├── EvaluateMetrics.R │ ├── GenSimData.R │ ├── GenSimX.R │ ├── IndCF.R │ ├── IndCT.R │ ├── IndFit.R │ ├── Iter1.R │ ├── LinearStack.R │ ├── LoadLibrary.R │ ├── LstToDF.R │ └── MAwrap.R ├── run_hetero.sh └── sbatch_hetero.R ├── data └── SimDataLst.rda ├── man ├── .Rhistory ├── BestLinearProj.Rd ├── EnsemForest.Rd ├── EnsemTree.Rd ├── GenAugData.Rd ├── GenSimData.Rd ├── GenSimX.Rd ├── GetHonestRcpp.Rd ├── GetScores.Rd ├── PlotForestImp.Rd ├── PlotForestPred.Rd ├── PlotTree.Rd ├── PredHonestRcpp.Rd └── SimDataLst.Rd └── src ├── .gitignore ├── GetHonestRcpp.cpp ├── PredHonestRcpp.cpp └── RcppExports.cpp /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/BestLinearProj.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/R/BestLinearProj.R -------------------------------------------------------------------------------- /R/CheckHelpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/R/CheckHelpers.R -------------------------------------------------------------------------------- /R/EnsemForest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/R/EnsemForest.R -------------------------------------------------------------------------------- /R/EnsemTree.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/R/EnsemTree.R -------------------------------------------------------------------------------- /R/GenAugData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/R/GenAugData.R -------------------------------------------------------------------------------- /R/GenSimData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/R/GenSimData.R -------------------------------------------------------------------------------- /R/PlotForestImp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/R/PlotForestImp.R -------------------------------------------------------------------------------- /R/PlotForestPred.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/R/PlotForestPred.R -------------------------------------------------------------------------------- /R/PlotTree.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/R/PlotTree.R -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/SimDataLst.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/R/SimDataLst.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/README.md -------------------------------------------------------------------------------- /code_for_paper/R/AugDataCF.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/code_for_paper/R/AugDataCF.R -------------------------------------------------------------------------------- /code_for_paper/R/AugDataCT.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/code_for_paper/R/AugDataCT.R -------------------------------------------------------------------------------- /code_for_paper/R/EWMAwrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/code_for_paper/R/EWMAwrap.R -------------------------------------------------------------------------------- /code_for_paper/R/EnsRF.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/code_for_paper/R/EnsRF.R -------------------------------------------------------------------------------- /code_for_paper/R/EnsRT.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/code_for_paper/R/EnsRT.R -------------------------------------------------------------------------------- /code_for_paper/R/EvaluateMetrics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/code_for_paper/R/EvaluateMetrics.R -------------------------------------------------------------------------------- /code_for_paper/R/GenSimData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/code_for_paper/R/GenSimData.R -------------------------------------------------------------------------------- /code_for_paper/R/GenSimX.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/code_for_paper/R/GenSimX.R -------------------------------------------------------------------------------- /code_for_paper/R/IndCF.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/code_for_paper/R/IndCF.R -------------------------------------------------------------------------------- /code_for_paper/R/IndCT.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/code_for_paper/R/IndCT.R -------------------------------------------------------------------------------- /code_for_paper/R/IndFit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/code_for_paper/R/IndFit.R -------------------------------------------------------------------------------- /code_for_paper/R/Iter1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/code_for_paper/R/Iter1.R -------------------------------------------------------------------------------- /code_for_paper/R/LinearStack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/code_for_paper/R/LinearStack.R -------------------------------------------------------------------------------- /code_for_paper/R/LoadLibrary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/code_for_paper/R/LoadLibrary.R -------------------------------------------------------------------------------- /code_for_paper/R/LstToDF.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/code_for_paper/R/LstToDF.R -------------------------------------------------------------------------------- /code_for_paper/R/MAwrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/code_for_paper/R/MAwrap.R -------------------------------------------------------------------------------- /code_for_paper/run_hetero.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/code_for_paper/run_hetero.sh -------------------------------------------------------------------------------- /code_for_paper/sbatch_hetero.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/code_for_paper/sbatch_hetero.R -------------------------------------------------------------------------------- /data/SimDataLst.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/data/SimDataLst.rda -------------------------------------------------------------------------------- /man/.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/BestLinearProj.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/man/BestLinearProj.Rd -------------------------------------------------------------------------------- /man/EnsemForest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/man/EnsemForest.Rd -------------------------------------------------------------------------------- /man/EnsemTree.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/man/EnsemTree.Rd -------------------------------------------------------------------------------- /man/GenAugData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/man/GenAugData.Rd -------------------------------------------------------------------------------- /man/GenSimData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/man/GenSimData.Rd -------------------------------------------------------------------------------- /man/GenSimX.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/man/GenSimX.Rd -------------------------------------------------------------------------------- /man/GetHonestRcpp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/man/GetHonestRcpp.Rd -------------------------------------------------------------------------------- /man/GetScores.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/man/GetScores.Rd -------------------------------------------------------------------------------- /man/PlotForestImp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/man/PlotForestImp.Rd -------------------------------------------------------------------------------- /man/PlotForestPred.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/man/PlotForestPred.Rd -------------------------------------------------------------------------------- /man/PlotTree.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/man/PlotTree.Rd -------------------------------------------------------------------------------- /man/PredHonestRcpp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/man/PredHonestRcpp.Rd -------------------------------------------------------------------------------- /man/SimDataLst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/man/SimDataLst.Rd -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/GetHonestRcpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/src/GetHonestRcpp.cpp -------------------------------------------------------------------------------- /src/PredHonestRcpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/src/PredHonestRcpp.cpp -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellenxtan/ifedtree/HEAD/src/RcppExports.cpp --------------------------------------------------------------------------------