├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── lock.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── acceptable.R ├── as-parsed-model.R ├── misc.R ├── model-cubist.R ├── model-earth.R ├── model-glm.R ├── model-glmnet.R ├── model-lm.R ├── model-partykit.R ├── model-ranger.R ├── model-rf.R ├── model-xgboost.R ├── parsemodel.R ├── predict-column.R ├── predict-fit.R ├── predict-interval.R ├── tidymodels.R ├── tidypredict-package.R ├── tidypredict_test.R ├── to_sql.R └── tree.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── air.toml ├── codecov.yml ├── cran-comments.md ├── man ├── .gitignore ├── acceptable_formula.Rd ├── as_parsed_model.Rd ├── dot-extract_partykit_classprob.Rd ├── dot-extract_xgb_trees.Rd ├── figures │ ├── howitworks.png │ └── logo.png ├── generate_case_when_trees.Rd ├── generate_tree_node.Rd ├── knit_print.tidypredict_test.Rd ├── parse_model.Rd ├── path_formula.Rd ├── path_formulas.Rd ├── print.tidypredict_test.Rd ├── reexports.Rd ├── tidy.pm_regression.Rd ├── tidypredict-package.Rd ├── tidypredict_fit.Rd ├── tidypredict_interval.Rd ├── tidypredict_sql.Rd ├── tidypredict_sql_interval.Rd ├── tidypredict_test.Rd └── tidypredict_to_column.Rd ├── revdep ├── .gitignore ├── README.md ├── check.R └── problems.md ├── tests ├── testthat.R └── testthat │ ├── _snaps │ ├── 1.7.11.1 │ │ └── model-xgboost.md │ ├── 3.1.2.1 │ │ └── model-xgboost.md │ ├── model-cubist.md │ ├── model-earth.md │ ├── model-glm.md │ ├── model-glmnet.md │ ├── model-lm.md │ ├── model-partykit.md │ ├── model-ranger.md │ ├── model-rf.md │ ├── model-xgboost.md │ ├── tidymodels.md │ └── tree.md │ ├── helper-printing.R │ ├── test-acceptable.R │ ├── test-misc.R │ ├── test-model-cubist.R │ ├── test-model-earth.R │ ├── test-model-glm.R │ ├── test-model-glmnet.R │ ├── test-model-lm.R │ ├── test-model-partykit.R │ ├── test-model-ranger.R │ ├── test-model-rf.R │ ├── test-model-xgboost.R │ ├── test-sql.R │ ├── test-tidymodels.R │ ├── test-tidypredict_test.R │ └── test-tree.R ├── tidypredict.Rproj └── vignettes ├── .gitignore ├── cubist.Rmd ├── glm.Rmd ├── glmnet.Rmd ├── lm.Rmd ├── mars.Rmd ├── non-r.Rmd ├── ranger.Rmd ├── regression.Rmd ├── regression.csv ├── rf.Rmd ├── save.Rmd ├── sql.Rmd ├── tree.Rmd ├── tree.csv └── xgboost.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/.github/workflows/lock.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2021 2 | COPYRIGHT HOLDER: tidypredict authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/acceptable.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/acceptable.R -------------------------------------------------------------------------------- /R/as-parsed-model.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/as-parsed-model.R -------------------------------------------------------------------------------- /R/misc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/misc.R -------------------------------------------------------------------------------- /R/model-cubist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/model-cubist.R -------------------------------------------------------------------------------- /R/model-earth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/model-earth.R -------------------------------------------------------------------------------- /R/model-glm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/model-glm.R -------------------------------------------------------------------------------- /R/model-glmnet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/model-glmnet.R -------------------------------------------------------------------------------- /R/model-lm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/model-lm.R -------------------------------------------------------------------------------- /R/model-partykit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/model-partykit.R -------------------------------------------------------------------------------- /R/model-ranger.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/model-ranger.R -------------------------------------------------------------------------------- /R/model-rf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/model-rf.R -------------------------------------------------------------------------------- /R/model-xgboost.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/model-xgboost.R -------------------------------------------------------------------------------- /R/parsemodel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/parsemodel.R -------------------------------------------------------------------------------- /R/predict-column.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/predict-column.R -------------------------------------------------------------------------------- /R/predict-fit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/predict-fit.R -------------------------------------------------------------------------------- /R/predict-interval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/predict-interval.R -------------------------------------------------------------------------------- /R/tidymodels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/tidymodels.R -------------------------------------------------------------------------------- /R/tidypredict-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/tidypredict-package.R -------------------------------------------------------------------------------- /R/tidypredict_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/tidypredict_test.R -------------------------------------------------------------------------------- /R/to_sql.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/to_sql.R -------------------------------------------------------------------------------- /R/tree.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/R/tree.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /air.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/cran-comments.md -------------------------------------------------------------------------------- /man/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /man/acceptable_formula.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/acceptable_formula.Rd -------------------------------------------------------------------------------- /man/as_parsed_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/as_parsed_model.Rd -------------------------------------------------------------------------------- /man/dot-extract_partykit_classprob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/dot-extract_partykit_classprob.Rd -------------------------------------------------------------------------------- /man/dot-extract_xgb_trees.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/dot-extract_xgb_trees.Rd -------------------------------------------------------------------------------- /man/figures/howitworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/figures/howitworks.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/generate_case_when_trees.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/generate_case_when_trees.Rd -------------------------------------------------------------------------------- /man/generate_tree_node.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/generate_tree_node.Rd -------------------------------------------------------------------------------- /man/knit_print.tidypredict_test.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/knit_print.tidypredict_test.Rd -------------------------------------------------------------------------------- /man/parse_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/parse_model.Rd -------------------------------------------------------------------------------- /man/path_formula.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/path_formula.Rd -------------------------------------------------------------------------------- /man/path_formulas.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/path_formulas.Rd -------------------------------------------------------------------------------- /man/print.tidypredict_test.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/print.tidypredict_test.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/tidy.pm_regression.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/tidy.pm_regression.Rd -------------------------------------------------------------------------------- /man/tidypredict-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/tidypredict-package.Rd -------------------------------------------------------------------------------- /man/tidypredict_fit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/tidypredict_fit.Rd -------------------------------------------------------------------------------- /man/tidypredict_interval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/tidypredict_interval.Rd -------------------------------------------------------------------------------- /man/tidypredict_sql.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/tidypredict_sql.Rd -------------------------------------------------------------------------------- /man/tidypredict_sql_interval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/tidypredict_sql_interval.Rd -------------------------------------------------------------------------------- /man/tidypredict_test.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/tidypredict_test.Rd -------------------------------------------------------------------------------- /man/tidypredict_to_column.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/man/tidypredict_to_column.Rd -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/revdep/check.R -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/1.7.11.1/model-xgboost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/_snaps/1.7.11.1/model-xgboost.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/3.1.2.1/model-xgboost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/_snaps/3.1.2.1/model-xgboost.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/model-cubist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/_snaps/model-cubist.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/model-earth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/_snaps/model-earth.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/model-glm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/_snaps/model-glm.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/model-glmnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/_snaps/model-glmnet.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/model-lm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/_snaps/model-lm.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/model-partykit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/_snaps/model-partykit.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/model-ranger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/_snaps/model-ranger.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/model-rf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/_snaps/model-rf.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/model-xgboost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/_snaps/model-xgboost.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/tidymodels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/_snaps/tidymodels.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/_snaps/tree.md -------------------------------------------------------------------------------- /tests/testthat/helper-printing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/helper-printing.R -------------------------------------------------------------------------------- /tests/testthat/test-acceptable.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/test-acceptable.R -------------------------------------------------------------------------------- /tests/testthat/test-misc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/test-misc.R -------------------------------------------------------------------------------- /tests/testthat/test-model-cubist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/test-model-cubist.R -------------------------------------------------------------------------------- /tests/testthat/test-model-earth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/test-model-earth.R -------------------------------------------------------------------------------- /tests/testthat/test-model-glm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/test-model-glm.R -------------------------------------------------------------------------------- /tests/testthat/test-model-glmnet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/test-model-glmnet.R -------------------------------------------------------------------------------- /tests/testthat/test-model-lm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/test-model-lm.R -------------------------------------------------------------------------------- /tests/testthat/test-model-partykit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/test-model-partykit.R -------------------------------------------------------------------------------- /tests/testthat/test-model-ranger.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/test-model-ranger.R -------------------------------------------------------------------------------- /tests/testthat/test-model-rf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/test-model-rf.R -------------------------------------------------------------------------------- /tests/testthat/test-model-xgboost.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/test-model-xgboost.R -------------------------------------------------------------------------------- /tests/testthat/test-sql.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/test-sql.R -------------------------------------------------------------------------------- /tests/testthat/test-tidymodels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/test-tidymodels.R -------------------------------------------------------------------------------- /tests/testthat/test-tidypredict_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/test-tidypredict_test.R -------------------------------------------------------------------------------- /tests/testthat/test-tree.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tests/testthat/test-tree.R -------------------------------------------------------------------------------- /tidypredict.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/tidypredict.Rproj -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/cubist.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/vignettes/cubist.Rmd -------------------------------------------------------------------------------- /vignettes/glm.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/vignettes/glm.Rmd -------------------------------------------------------------------------------- /vignettes/glmnet.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/vignettes/glmnet.Rmd -------------------------------------------------------------------------------- /vignettes/lm.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/vignettes/lm.Rmd -------------------------------------------------------------------------------- /vignettes/mars.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/vignettes/mars.Rmd -------------------------------------------------------------------------------- /vignettes/non-r.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/vignettes/non-r.Rmd -------------------------------------------------------------------------------- /vignettes/ranger.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/vignettes/ranger.Rmd -------------------------------------------------------------------------------- /vignettes/regression.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/vignettes/regression.Rmd -------------------------------------------------------------------------------- /vignettes/regression.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/vignettes/regression.csv -------------------------------------------------------------------------------- /vignettes/rf.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/vignettes/rf.Rmd -------------------------------------------------------------------------------- /vignettes/save.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/vignettes/save.Rmd -------------------------------------------------------------------------------- /vignettes/sql.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/vignettes/sql.Rmd -------------------------------------------------------------------------------- /vignettes/tree.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/vignettes/tree.Rmd -------------------------------------------------------------------------------- /vignettes/tree.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/vignettes/tree.csv -------------------------------------------------------------------------------- /vignettes/xgboost.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidypredict/HEAD/vignettes/xgboost.Rmd --------------------------------------------------------------------------------