├── .gitignore ├── README.md └── orf ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R ├── checks.R ├── evals.R ├── honest_funs.R ├── margins.R ├── odata.R ├── orf_dev.R ├── orf_package.R ├── orf_user.R └── weight_funs.R ├── README.md ├── cran-comments.md ├── inst └── CITATION ├── man ├── check_X.Rd ├── check_Y.Rd ├── check_discrete_Y.Rd ├── check_eval.Rd ├── check_honesty.Rd ├── check_honesty_fraction.Rd ├── check_importance.Rd ├── check_inference.Rd ├── check_latex.Rd ├── check_min_node_size.Rd ├── check_mtry.Rd ├── check_newdata.Rd ├── check_num_trees.Rd ├── check_replace.Rd ├── check_sample_fraction.Rd ├── check_type.Rd ├── check_window.Rd ├── get_forest_weights.Rd ├── get_honest.Rd ├── get_honest_C.Rd ├── get_orf_variance.Rd ├── get_weights_C.Rd ├── honest_split.Rd ├── margins.Rd ├── margins.orf.Rd ├── margins_output.Rd ├── margins_output_latex.Rd ├── mse.Rd ├── odata.Rd ├── orf-package.Rd ├── orf.Rd ├── plot.orf.Rd ├── pred_honest_C.Rd ├── pred_orf_variance.Rd ├── pred_weights_C.Rd ├── predict.orf.Rd ├── predict_forest_preds_for_ME.Rd ├── predict_forest_weights.Rd ├── predict_forest_weights_for_ME.Rd ├── predict_honest.Rd ├── print.margins.orf.Rd ├── print.orf.Rd ├── print.orf.prediction.Rd ├── rps.Rd ├── summary.margins.orf.Rd ├── summary.orf.Rd └── summary.orf.prediction.Rd ├── orf.Rproj ├── src ├── .gitignore ├── RcppExports.cpp ├── get_honest_rcpp.cpp ├── get_weights_rcpp.cpp ├── pred_honest_rcpp.cpp └── pred_weights_rcpp.cpp ├── tests ├── testthat.R └── testthat │ ├── test_margins.R │ └── test_orf.R └── vignettes ├── .gitignore ├── library.bib └── orf_vignette.Rmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/README.md -------------------------------------------------------------------------------- /orf/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/.Rbuildignore -------------------------------------------------------------------------------- /orf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/.gitignore -------------------------------------------------------------------------------- /orf/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/DESCRIPTION -------------------------------------------------------------------------------- /orf/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/NAMESPACE -------------------------------------------------------------------------------- /orf/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/NEWS.md -------------------------------------------------------------------------------- /orf/R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/R/RcppExports.R -------------------------------------------------------------------------------- /orf/R/checks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/R/checks.R -------------------------------------------------------------------------------- /orf/R/evals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/R/evals.R -------------------------------------------------------------------------------- /orf/R/honest_funs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/R/honest_funs.R -------------------------------------------------------------------------------- /orf/R/margins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/R/margins.R -------------------------------------------------------------------------------- /orf/R/odata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/R/odata.R -------------------------------------------------------------------------------- /orf/R/orf_dev.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/R/orf_dev.R -------------------------------------------------------------------------------- /orf/R/orf_package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/R/orf_package.R -------------------------------------------------------------------------------- /orf/R/orf_user.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/R/orf_user.R -------------------------------------------------------------------------------- /orf/R/weight_funs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/R/weight_funs.R -------------------------------------------------------------------------------- /orf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/README.md -------------------------------------------------------------------------------- /orf/cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/cran-comments.md -------------------------------------------------------------------------------- /orf/inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/inst/CITATION -------------------------------------------------------------------------------- /orf/man/check_X.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/check_X.Rd -------------------------------------------------------------------------------- /orf/man/check_Y.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/check_Y.Rd -------------------------------------------------------------------------------- /orf/man/check_discrete_Y.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/check_discrete_Y.Rd -------------------------------------------------------------------------------- /orf/man/check_eval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/check_eval.Rd -------------------------------------------------------------------------------- /orf/man/check_honesty.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/check_honesty.Rd -------------------------------------------------------------------------------- /orf/man/check_honesty_fraction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/check_honesty_fraction.Rd -------------------------------------------------------------------------------- /orf/man/check_importance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/check_importance.Rd -------------------------------------------------------------------------------- /orf/man/check_inference.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/check_inference.Rd -------------------------------------------------------------------------------- /orf/man/check_latex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/check_latex.Rd -------------------------------------------------------------------------------- /orf/man/check_min_node_size.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/check_min_node_size.Rd -------------------------------------------------------------------------------- /orf/man/check_mtry.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/check_mtry.Rd -------------------------------------------------------------------------------- /orf/man/check_newdata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/check_newdata.Rd -------------------------------------------------------------------------------- /orf/man/check_num_trees.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/check_num_trees.Rd -------------------------------------------------------------------------------- /orf/man/check_replace.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/check_replace.Rd -------------------------------------------------------------------------------- /orf/man/check_sample_fraction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/check_sample_fraction.Rd -------------------------------------------------------------------------------- /orf/man/check_type.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/check_type.Rd -------------------------------------------------------------------------------- /orf/man/check_window.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/check_window.Rd -------------------------------------------------------------------------------- /orf/man/get_forest_weights.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/get_forest_weights.Rd -------------------------------------------------------------------------------- /orf/man/get_honest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/get_honest.Rd -------------------------------------------------------------------------------- /orf/man/get_honest_C.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/get_honest_C.Rd -------------------------------------------------------------------------------- /orf/man/get_orf_variance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/get_orf_variance.Rd -------------------------------------------------------------------------------- /orf/man/get_weights_C.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/get_weights_C.Rd -------------------------------------------------------------------------------- /orf/man/honest_split.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/honest_split.Rd -------------------------------------------------------------------------------- /orf/man/margins.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/margins.Rd -------------------------------------------------------------------------------- /orf/man/margins.orf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/margins.orf.Rd -------------------------------------------------------------------------------- /orf/man/margins_output.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/margins_output.Rd -------------------------------------------------------------------------------- /orf/man/margins_output_latex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/margins_output_latex.Rd -------------------------------------------------------------------------------- /orf/man/mse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/mse.Rd -------------------------------------------------------------------------------- /orf/man/odata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/odata.Rd -------------------------------------------------------------------------------- /orf/man/orf-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/orf-package.Rd -------------------------------------------------------------------------------- /orf/man/orf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/orf.Rd -------------------------------------------------------------------------------- /orf/man/plot.orf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/plot.orf.Rd -------------------------------------------------------------------------------- /orf/man/pred_honest_C.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/pred_honest_C.Rd -------------------------------------------------------------------------------- /orf/man/pred_orf_variance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/pred_orf_variance.Rd -------------------------------------------------------------------------------- /orf/man/pred_weights_C.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/pred_weights_C.Rd -------------------------------------------------------------------------------- /orf/man/predict.orf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/predict.orf.Rd -------------------------------------------------------------------------------- /orf/man/predict_forest_preds_for_ME.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/predict_forest_preds_for_ME.Rd -------------------------------------------------------------------------------- /orf/man/predict_forest_weights.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/predict_forest_weights.Rd -------------------------------------------------------------------------------- /orf/man/predict_forest_weights_for_ME.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/predict_forest_weights_for_ME.Rd -------------------------------------------------------------------------------- /orf/man/predict_honest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/predict_honest.Rd -------------------------------------------------------------------------------- /orf/man/print.margins.orf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/print.margins.orf.Rd -------------------------------------------------------------------------------- /orf/man/print.orf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/print.orf.Rd -------------------------------------------------------------------------------- /orf/man/print.orf.prediction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/print.orf.prediction.Rd -------------------------------------------------------------------------------- /orf/man/rps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/rps.Rd -------------------------------------------------------------------------------- /orf/man/summary.margins.orf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/summary.margins.orf.Rd -------------------------------------------------------------------------------- /orf/man/summary.orf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/summary.orf.Rd -------------------------------------------------------------------------------- /orf/man/summary.orf.prediction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/man/summary.orf.prediction.Rd -------------------------------------------------------------------------------- /orf/orf.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/orf.Rproj -------------------------------------------------------------------------------- /orf/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/src/.gitignore -------------------------------------------------------------------------------- /orf/src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/src/RcppExports.cpp -------------------------------------------------------------------------------- /orf/src/get_honest_rcpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/src/get_honest_rcpp.cpp -------------------------------------------------------------------------------- /orf/src/get_weights_rcpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/src/get_weights_rcpp.cpp -------------------------------------------------------------------------------- /orf/src/pred_honest_rcpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/src/pred_honest_rcpp.cpp -------------------------------------------------------------------------------- /orf/src/pred_weights_rcpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/src/pred_weights_rcpp.cpp -------------------------------------------------------------------------------- /orf/tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/tests/testthat.R -------------------------------------------------------------------------------- /orf/tests/testthat/test_margins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/tests/testthat/test_margins.R -------------------------------------------------------------------------------- /orf/tests/testthat/test_orf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/tests/testthat/test_orf.R -------------------------------------------------------------------------------- /orf/vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /orf/vignettes/library.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/vignettes/library.bib -------------------------------------------------------------------------------- /orf/vignettes/orf_vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okasag/orf/HEAD/orf/vignettes/orf_vignette.Rmd --------------------------------------------------------------------------------