idaGetModelName {ibmdbR} | R Documentation |
Get the name of a model
Description
Use this function to get the name under which a model is stored in-database. This function can be applied to objects returned by
functions like idaNaiveBayes
, idaKMeans
or idaArule
.
Usage
idaGetModelname(object)
Arguments
object |
The object representing the model. |
Value
The fully qualified name of the model, as stored in-database. This name is used, e.g. in conjunction with the idaRetrieveModel
or with the idaDropModel
function.
Examples
## Not run:
#Get the name of a model stored in variable km
modelname <- idaGetModelname(km)
## End(Not run)
[Package ibmdbR version 1.51.0 Index]