Description Usage Arguments Value See Also Examples
View source: R/model_operations.R
Get PMML model name, description, input and output field properties.
1 | get_model_properties(model_name, ...)
|
model_name |
Name of the PMML model whose properties are requested. |
... |
Additional arguments passed on to the underlying HTTP method.
This might be necessary if you need to set some curl options explicitly
via |
A list with the following components:
modelName
A length one character vector containing the model_name
description
A length one character vector with the description of the model
isActive
A length one character vector with the activation status of the model
inputFields
A data frame with the model input field properties (name, type, usage)
outputFields
A data frame with the model output field properties (name, type, usage)
1 2 3 4 | ## Not run:
get_model_properties("iris_model")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.