├── .Rbuildignore ├── .github ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md └── workflows │ ├── R-CMD-check-hard.yaml │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── api.R ├── attach-pkgs.R ├── caret.R ├── dashboard.R ├── endpoint.R ├── gam.R ├── glm.R ├── handlers.R ├── import-standalone-obj-type.R ├── import-standalone-types-check.R ├── keras.R ├── kproto.R ├── lm.R ├── luz.R ├── meta.R ├── mlr3.R ├── monitor.R ├── open-api-spec.R ├── pin-read-write.R ├── prepare.R ├── probably.R ├── prototype.R ├── ranger.R ├── recipe.R ├── renv.R ├── rsconnect.R ├── sagemaker-utils.R ├── sagemaker.R ├── stacks.R ├── tidymodels.R ├── vetiver-model.R ├── vetiver-package.R ├── write-docker.R ├── write-plumber.R ├── xgboost.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── inst ├── biv_tidymodels.R ├── chicago_rpart.R ├── mtcars_keras.R ├── mtcars_lm.R ├── mtcars_luz.R ├── mtcars_ranger.R ├── mtcars_xgb.R ├── netflix_tidymodels.R ├── pima_Learner.R ├── plumber │ ├── biv-svm │ │ └── plumber.R │ ├── chicago-rpart │ │ └── plumber.R │ ├── mtcars-lm │ │ └── plumber.R │ ├── mtcars-ranger │ │ └── plumber.R │ ├── mtcars-xgb │ │ └── plumber.R │ └── netflix-descriptions │ │ └── plumber.R ├── requirements │ ├── keras-requirements.txt │ └── luz-renviron.txt ├── rmarkdown │ └── templates │ │ ├── vetiver_dashboard │ │ ├── skeleton │ │ │ └── skeleton.Rmd │ │ └── template.yaml │ │ └── vetiver_model_card │ │ ├── skeleton │ │ └── skeleton.Rmd │ │ └── template.yaml ├── vendor │ └── renv.R └── vetiver.png ├── man ├── api_spec.Rd ├── attach_pkgs.Rd ├── augment.vetiver_endpoint.Rd ├── augment.vetiver_endpoint_sagemaker.Rd ├── figures │ ├── lifecycle-archived.svg │ ├── lifecycle-defunct.svg │ ├── lifecycle-deprecated.svg │ ├── lifecycle-experimental.svg │ ├── lifecycle-maturing.svg │ ├── lifecycle-questioning.svg │ ├── lifecycle-soft-deprecated.svg │ ├── lifecycle-stable.svg │ ├── lifecycle-superseded.svg │ └── logo.png ├── handler_startup.Rd ├── map_request_body.Rd ├── predict.vetiver_endpoint.Rd ├── predict.vetiver_endpoint_sagemaker.Rd ├── reexports.Rd ├── vetiver-package.Rd ├── vetiver_api.Rd ├── vetiver_compute_metrics.Rd ├── vetiver_create_description.Rd ├── vetiver_create_meta.Rd ├── vetiver_create_ptype.Rd ├── vetiver_create_rsconnect_bundle.Rd ├── vetiver_dashboard.Rd ├── vetiver_deploy_rsconnect.Rd ├── vetiver_deploy_sagemaker.Rd ├── vetiver_endpoint.Rd ├── vetiver_endpoint_sagemaker.Rd ├── vetiver_model.Rd ├── vetiver_pin_metrics.Rd ├── vetiver_pin_write.Rd ├── vetiver_plot_metrics.Rd ├── vetiver_pr_predict.Rd ├── vetiver_prepare_docker.Rd ├── vetiver_python_requirements.Rd ├── vetiver_sm_build.Rd ├── vetiver_sm_delete.Rd ├── vetiver_type_convert.Rd ├── vetiver_write_docker.Rd └── vetiver_write_plumber.Rd ├── revdep ├── .gitignore ├── README.md ├── cran.md ├── failures.md └── problems.md ├── tests ├── testthat.R └── testthat │ ├── _snaps │ ├── api.md │ ├── attach-pkgs.md │ ├── caret.md │ ├── choose-version.md │ ├── create-ptype.md │ ├── dashboard.md │ ├── gam.md │ ├── glm.md │ ├── keras.md │ ├── kproto.md │ ├── luz.md │ ├── mlr3.md │ ├── monitor.md │ ├── monitor │ │ └── default-metrics-plot.svg │ ├── pin-read-write.md │ ├── predict.md │ ├── probably.md │ ├── ranger.md │ ├── recipe.md │ ├── rsconnect.md │ ├── sagemaker.md │ ├── stacks.md │ ├── tidymodels.md │ ├── type-convert.md │ ├── write-docker.md │ ├── write-plumber.md │ └── xgboost.md │ ├── helper.R │ ├── setup.R │ ├── test-api.R │ ├── test-attach-pkgs.R │ ├── test-caret.R │ ├── test-choose-version.R │ ├── test-create-ptype.R │ ├── test-dashboard.R │ ├── test-gam.R │ ├── test-glm.R │ ├── test-keras.R │ ├── test-kproto.R │ ├── test-luz.R │ ├── test-mlr3.R │ ├── test-monitor.R │ ├── test-pin-read-write.R │ ├── test-predict.R │ ├── test-probably.R │ ├── test-ranger.R │ ├── test-recipe.R │ ├── test-rsconnect.R │ ├── test-sagemaker.R │ ├── test-stacks.R │ ├── test-tidymodels.R │ ├── test-type-convert.R │ ├── test-write-docker.R │ ├── test-write-plumber.R │ └── test-xgboost.R ├── vetiver-r.Rproj └── vignettes ├── .gitignore └── vetiver.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check-hard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/.github/workflows/R-CMD-check-hard.yaml -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: vetiver authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/api.R -------------------------------------------------------------------------------- /R/attach-pkgs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/attach-pkgs.R -------------------------------------------------------------------------------- /R/caret.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/caret.R -------------------------------------------------------------------------------- /R/dashboard.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/dashboard.R -------------------------------------------------------------------------------- /R/endpoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/endpoint.R -------------------------------------------------------------------------------- /R/gam.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/gam.R -------------------------------------------------------------------------------- /R/glm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/glm.R -------------------------------------------------------------------------------- /R/handlers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/handlers.R -------------------------------------------------------------------------------- /R/import-standalone-obj-type.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/import-standalone-obj-type.R -------------------------------------------------------------------------------- /R/import-standalone-types-check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/import-standalone-types-check.R -------------------------------------------------------------------------------- /R/keras.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/keras.R -------------------------------------------------------------------------------- /R/kproto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/kproto.R -------------------------------------------------------------------------------- /R/lm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/lm.R -------------------------------------------------------------------------------- /R/luz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/luz.R -------------------------------------------------------------------------------- /R/meta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/meta.R -------------------------------------------------------------------------------- /R/mlr3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/mlr3.R -------------------------------------------------------------------------------- /R/monitor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/monitor.R -------------------------------------------------------------------------------- /R/open-api-spec.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/open-api-spec.R -------------------------------------------------------------------------------- /R/pin-read-write.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/pin-read-write.R -------------------------------------------------------------------------------- /R/prepare.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/prepare.R -------------------------------------------------------------------------------- /R/probably.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/probably.R -------------------------------------------------------------------------------- /R/prototype.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/prototype.R -------------------------------------------------------------------------------- /R/ranger.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/ranger.R -------------------------------------------------------------------------------- /R/recipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/recipe.R -------------------------------------------------------------------------------- /R/renv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/renv.R -------------------------------------------------------------------------------- /R/rsconnect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/rsconnect.R -------------------------------------------------------------------------------- /R/sagemaker-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/sagemaker-utils.R -------------------------------------------------------------------------------- /R/sagemaker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/sagemaker.R -------------------------------------------------------------------------------- /R/stacks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/stacks.R -------------------------------------------------------------------------------- /R/tidymodels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/tidymodels.R -------------------------------------------------------------------------------- /R/vetiver-model.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/vetiver-model.R -------------------------------------------------------------------------------- /R/vetiver-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/vetiver-package.R -------------------------------------------------------------------------------- /R/write-docker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/write-docker.R -------------------------------------------------------------------------------- /R/write-plumber.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/write-plumber.R -------------------------------------------------------------------------------- /R/xgboost.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/xgboost.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/biv_tidymodels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/biv_tidymodels.R -------------------------------------------------------------------------------- /inst/chicago_rpart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/chicago_rpart.R -------------------------------------------------------------------------------- /inst/mtcars_keras.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/mtcars_keras.R -------------------------------------------------------------------------------- /inst/mtcars_lm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/mtcars_lm.R -------------------------------------------------------------------------------- /inst/mtcars_luz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/mtcars_luz.R -------------------------------------------------------------------------------- /inst/mtcars_ranger.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/mtcars_ranger.R -------------------------------------------------------------------------------- /inst/mtcars_xgb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/mtcars_xgb.R -------------------------------------------------------------------------------- /inst/netflix_tidymodels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/netflix_tidymodels.R -------------------------------------------------------------------------------- /inst/pima_Learner.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/pima_Learner.R -------------------------------------------------------------------------------- /inst/plumber/biv-svm/plumber.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/plumber/biv-svm/plumber.R -------------------------------------------------------------------------------- /inst/plumber/chicago-rpart/plumber.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/plumber/chicago-rpart/plumber.R -------------------------------------------------------------------------------- /inst/plumber/mtcars-lm/plumber.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/plumber/mtcars-lm/plumber.R -------------------------------------------------------------------------------- /inst/plumber/mtcars-ranger/plumber.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/plumber/mtcars-ranger/plumber.R -------------------------------------------------------------------------------- /inst/plumber/mtcars-xgb/plumber.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/plumber/mtcars-xgb/plumber.R -------------------------------------------------------------------------------- /inst/plumber/netflix-descriptions/plumber.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/plumber/netflix-descriptions/plumber.R -------------------------------------------------------------------------------- /inst/requirements/keras-requirements.txt: -------------------------------------------------------------------------------- 1 | keras 2 | tensorflow 3 | -------------------------------------------------------------------------------- /inst/requirements/luz-renviron.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/requirements/luz-renviron.txt -------------------------------------------------------------------------------- /inst/rmarkdown/templates/vetiver_dashboard/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/rmarkdown/templates/vetiver_dashboard/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/vetiver_dashboard/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/rmarkdown/templates/vetiver_dashboard/template.yaml -------------------------------------------------------------------------------- /inst/rmarkdown/templates/vetiver_model_card/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/rmarkdown/templates/vetiver_model_card/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/vetiver_model_card/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/rmarkdown/templates/vetiver_model_card/template.yaml -------------------------------------------------------------------------------- /inst/vendor/renv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/vendor/renv.R -------------------------------------------------------------------------------- /inst/vetiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/inst/vetiver.png -------------------------------------------------------------------------------- /man/api_spec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/api_spec.Rd -------------------------------------------------------------------------------- /man/attach_pkgs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/attach_pkgs.Rd -------------------------------------------------------------------------------- /man/augment.vetiver_endpoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/augment.vetiver_endpoint.Rd -------------------------------------------------------------------------------- /man/augment.vetiver_endpoint_sagemaker.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/augment.vetiver_endpoint_sagemaker.Rd -------------------------------------------------------------------------------- /man/figures/lifecycle-archived.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/figures/lifecycle-archived.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-defunct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/figures/lifecycle-defunct.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-maturing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/figures/lifecycle-maturing.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-questioning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/figures/lifecycle-questioning.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-soft-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/figures/lifecycle-soft-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/handler_startup.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/handler_startup.Rd -------------------------------------------------------------------------------- /man/map_request_body.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/map_request_body.Rd -------------------------------------------------------------------------------- /man/predict.vetiver_endpoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/predict.vetiver_endpoint.Rd -------------------------------------------------------------------------------- /man/predict.vetiver_endpoint_sagemaker.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/predict.vetiver_endpoint_sagemaker.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/vetiver-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver-package.Rd -------------------------------------------------------------------------------- /man/vetiver_api.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_api.Rd -------------------------------------------------------------------------------- /man/vetiver_compute_metrics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_compute_metrics.Rd -------------------------------------------------------------------------------- /man/vetiver_create_description.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_create_description.Rd -------------------------------------------------------------------------------- /man/vetiver_create_meta.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_create_meta.Rd -------------------------------------------------------------------------------- /man/vetiver_create_ptype.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_create_ptype.Rd -------------------------------------------------------------------------------- /man/vetiver_create_rsconnect_bundle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_create_rsconnect_bundle.Rd -------------------------------------------------------------------------------- /man/vetiver_dashboard.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_dashboard.Rd -------------------------------------------------------------------------------- /man/vetiver_deploy_rsconnect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_deploy_rsconnect.Rd -------------------------------------------------------------------------------- /man/vetiver_deploy_sagemaker.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_deploy_sagemaker.Rd -------------------------------------------------------------------------------- /man/vetiver_endpoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_endpoint.Rd -------------------------------------------------------------------------------- /man/vetiver_endpoint_sagemaker.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_endpoint_sagemaker.Rd -------------------------------------------------------------------------------- /man/vetiver_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_model.Rd -------------------------------------------------------------------------------- /man/vetiver_pin_metrics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_pin_metrics.Rd -------------------------------------------------------------------------------- /man/vetiver_pin_write.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_pin_write.Rd -------------------------------------------------------------------------------- /man/vetiver_plot_metrics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_plot_metrics.Rd -------------------------------------------------------------------------------- /man/vetiver_pr_predict.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_pr_predict.Rd -------------------------------------------------------------------------------- /man/vetiver_prepare_docker.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_prepare_docker.Rd -------------------------------------------------------------------------------- /man/vetiver_python_requirements.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_python_requirements.Rd -------------------------------------------------------------------------------- /man/vetiver_sm_build.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_sm_build.Rd -------------------------------------------------------------------------------- /man/vetiver_sm_delete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_sm_delete.Rd -------------------------------------------------------------------------------- /man/vetiver_type_convert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_type_convert.Rd -------------------------------------------------------------------------------- /man/vetiver_write_docker.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_write_docker.Rd -------------------------------------------------------------------------------- /man/vetiver_write_plumber.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/man/vetiver_write_plumber.Rd -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/api.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/attach-pkgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/attach-pkgs.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/caret.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/caret.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/choose-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/choose-version.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/create-ptype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/create-ptype.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/dashboard.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/gam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/gam.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/glm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/glm.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/keras.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/keras.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/kproto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/kproto.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/luz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/luz.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/mlr3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/mlr3.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/monitor.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/monitor/default-metrics-plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/monitor/default-metrics-plot.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/pin-read-write.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/pin-read-write.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/predict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/predict.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/probably.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/probably.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/ranger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/ranger.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/recipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/recipe.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rsconnect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/rsconnect.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/sagemaker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/sagemaker.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/stacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/stacks.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/tidymodels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/tidymodels.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/type-convert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/type-convert.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/write-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/write-docker.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/write-plumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/write-plumber.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/xgboost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/_snaps/xgboost.md -------------------------------------------------------------------------------- /tests/testthat/helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/helper.R -------------------------------------------------------------------------------- /tests/testthat/setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/setup.R -------------------------------------------------------------------------------- /tests/testthat/test-api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-api.R -------------------------------------------------------------------------------- /tests/testthat/test-attach-pkgs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-attach-pkgs.R -------------------------------------------------------------------------------- /tests/testthat/test-caret.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-caret.R -------------------------------------------------------------------------------- /tests/testthat/test-choose-version.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-choose-version.R -------------------------------------------------------------------------------- /tests/testthat/test-create-ptype.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-create-ptype.R -------------------------------------------------------------------------------- /tests/testthat/test-dashboard.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-dashboard.R -------------------------------------------------------------------------------- /tests/testthat/test-gam.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-gam.R -------------------------------------------------------------------------------- /tests/testthat/test-glm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-glm.R -------------------------------------------------------------------------------- /tests/testthat/test-keras.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-keras.R -------------------------------------------------------------------------------- /tests/testthat/test-kproto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-kproto.R -------------------------------------------------------------------------------- /tests/testthat/test-luz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-luz.R -------------------------------------------------------------------------------- /tests/testthat/test-mlr3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-mlr3.R -------------------------------------------------------------------------------- /tests/testthat/test-monitor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-monitor.R -------------------------------------------------------------------------------- /tests/testthat/test-pin-read-write.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-pin-read-write.R -------------------------------------------------------------------------------- /tests/testthat/test-predict.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-predict.R -------------------------------------------------------------------------------- /tests/testthat/test-probably.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-probably.R -------------------------------------------------------------------------------- /tests/testthat/test-ranger.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-ranger.R -------------------------------------------------------------------------------- /tests/testthat/test-recipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-recipe.R -------------------------------------------------------------------------------- /tests/testthat/test-rsconnect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-rsconnect.R -------------------------------------------------------------------------------- /tests/testthat/test-sagemaker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-sagemaker.R -------------------------------------------------------------------------------- /tests/testthat/test-stacks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-stacks.R -------------------------------------------------------------------------------- /tests/testthat/test-tidymodels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-tidymodels.R -------------------------------------------------------------------------------- /tests/testthat/test-type-convert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-type-convert.R -------------------------------------------------------------------------------- /tests/testthat/test-write-docker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-write-docker.R -------------------------------------------------------------------------------- /tests/testthat/test-write-plumber.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-write-plumber.R -------------------------------------------------------------------------------- /tests/testthat/test-xgboost.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/tests/testthat/test-xgboost.R -------------------------------------------------------------------------------- /vetiver-r.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/vetiver-r.Rproj -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/vetiver.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/vetiver-r/HEAD/vignettes/vetiver.Rmd --------------------------------------------------------------------------------