├── .gitignore ├── README.md ├── causal_forest.ado ├── causal_forest.sthlp ├── grf.ado ├── grf.sthlp ├── grf_ate.ado ├── grf_ate.sthlp ├── grf_test_calibration.ado ├── grf_test_calibration.sthlp ├── grf_variable_importance.ado ├── grf_variable_importance.sthlp ├── gsynth.ado ├── gsynth.sthlp ├── gsynth_plot.ado ├── gsynth_plot.sthlp ├── mlrtime.ado ├── mlrtime.pkg ├── mlrtime.sthlp ├── mlrtimesetup.ado ├── mlrtimesetup.sthlp ├── parsnip.ado ├── parsnip.sthlp ├── parsnip_tester.do ├── ranger.ado ├── ranger.sthlp └── stata.toc /.gitignore: -------------------------------------------------------------------------------- 1 | rcall-3.1.0/* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/README.md -------------------------------------------------------------------------------- /causal_forest.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/causal_forest.ado -------------------------------------------------------------------------------- /causal_forest.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/causal_forest.sthlp -------------------------------------------------------------------------------- /grf.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/grf.ado -------------------------------------------------------------------------------- /grf.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/grf.sthlp -------------------------------------------------------------------------------- /grf_ate.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/grf_ate.ado -------------------------------------------------------------------------------- /grf_ate.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/grf_ate.sthlp -------------------------------------------------------------------------------- /grf_test_calibration.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/grf_test_calibration.ado -------------------------------------------------------------------------------- /grf_test_calibration.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/grf_test_calibration.sthlp -------------------------------------------------------------------------------- /grf_variable_importance.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/grf_variable_importance.ado -------------------------------------------------------------------------------- /grf_variable_importance.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/grf_variable_importance.sthlp -------------------------------------------------------------------------------- /gsynth.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/gsynth.ado -------------------------------------------------------------------------------- /gsynth.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/gsynth.sthlp -------------------------------------------------------------------------------- /gsynth_plot.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/gsynth_plot.ado -------------------------------------------------------------------------------- /gsynth_plot.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/gsynth_plot.sthlp -------------------------------------------------------------------------------- /mlrtime.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/mlrtime.ado -------------------------------------------------------------------------------- /mlrtime.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/mlrtime.pkg -------------------------------------------------------------------------------- /mlrtime.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/mlrtime.sthlp -------------------------------------------------------------------------------- /mlrtimesetup.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/mlrtimesetup.ado -------------------------------------------------------------------------------- /mlrtimesetup.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/mlrtimesetup.sthlp -------------------------------------------------------------------------------- /parsnip.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/parsnip.ado -------------------------------------------------------------------------------- /parsnip.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/parsnip.sthlp -------------------------------------------------------------------------------- /parsnip_tester.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/parsnip_tester.do -------------------------------------------------------------------------------- /ranger.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/ranger.ado -------------------------------------------------------------------------------- /ranger.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/ranger.sthlp -------------------------------------------------------------------------------- /stata.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCH-K/mlrtime/HEAD/stata.toc --------------------------------------------------------------------------------