Get PMML model name, description, input and output field properties.
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)
if (FALSE) { get_model_properties("iris_model") }