model
aborts normallyCode
create_modeling_package(path = "my/path")
Condition
Error in `create_modeling_package()`:
! `model` is absent but must be supplied.
path
aborts normallyCode
create_modeling_package(model = "my_model")
Condition
Error in `create_modeling_package()`:
! `path` is absent but must be supplied.
model
can only be a single stringCode
create_modeling_package(path = "my/path", model = c("model1", "model2"))
Condition
Error in `create_modeling_package()`:
! `model` must be a single string, not a character vector.
Code
create_modeling_package(path = "my/path", model = 1)
Condition
Error in `create_modeling_package()`:
! `model` must be a single string, not the number 1.
Code
create_modeling_package(path = "my/path", model = "model with space")
Condition
Error in `create_modeling_package()`:
! `model` must not contain any spaces.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.