├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── Example.R ├── NAMESPACE ├── R ├── dmlmt.R └── post_lasso_cv.R ├── README.md ├── dmlmt.Rproj └── man ├── CV_core.Rd ├── OLS_pred_w.Rd ├── PO_dmlmt.Rd ├── PO_dmlmt_w.Rd ├── PO_dmlmt_w_gen.Rd ├── TE_dmlmt.Rd ├── add_intercept.Rd ├── dmlmt.Rd ├── find_Xse_ind.Rd ├── fitted_values.Rd ├── gps_cs.Rd ├── gps_prep.Rd ├── norm_w_to_n.Rd ├── post_lasso_cv.Rd └── y_prep.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/Example.R -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/dmlmt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/R/dmlmt.R -------------------------------------------------------------------------------- /R/post_lasso_cv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/R/post_lasso_cv.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/README.md -------------------------------------------------------------------------------- /dmlmt.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/dmlmt.Rproj -------------------------------------------------------------------------------- /man/CV_core.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/man/CV_core.Rd -------------------------------------------------------------------------------- /man/OLS_pred_w.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/man/OLS_pred_w.Rd -------------------------------------------------------------------------------- /man/PO_dmlmt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/man/PO_dmlmt.Rd -------------------------------------------------------------------------------- /man/PO_dmlmt_w.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/man/PO_dmlmt_w.Rd -------------------------------------------------------------------------------- /man/PO_dmlmt_w_gen.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/man/PO_dmlmt_w_gen.Rd -------------------------------------------------------------------------------- /man/TE_dmlmt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/man/TE_dmlmt.Rd -------------------------------------------------------------------------------- /man/add_intercept.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/man/add_intercept.Rd -------------------------------------------------------------------------------- /man/dmlmt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/man/dmlmt.Rd -------------------------------------------------------------------------------- /man/find_Xse_ind.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/man/find_Xse_ind.Rd -------------------------------------------------------------------------------- /man/fitted_values.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/man/fitted_values.Rd -------------------------------------------------------------------------------- /man/gps_cs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/man/gps_cs.Rd -------------------------------------------------------------------------------- /man/gps_prep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/man/gps_prep.Rd -------------------------------------------------------------------------------- /man/norm_w_to_n.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/man/norm_w_to_n.Rd -------------------------------------------------------------------------------- /man/post_lasso_cv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/man/post_lasso_cv.Rd -------------------------------------------------------------------------------- /man/y_prep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCKnaus/dmlmt/HEAD/man/y_prep.Rd --------------------------------------------------------------------------------