idaNaiveBayes
builds a Naive Bayes classification model, thus a model that assumes independence
of input variables with respect to the target variable.
Continuous input variables are discretized using
equal width discretization. Missing values are ignored on a record and attribute level when calculating the
conditional probabilities.
Models are stored persistently in the database under the name modelname
. Model names cannot have more than 64 characters and
cannot contain white spaces. They need to be quoted like table names, otherwise they will be treated upper case by default. Only one
model with a given name is allowed in the database at a time. If a model with modelname
already exists, you need to drop it with idaDropModel
first before you can create another one with the same name. The model name can be used to retrieve the model later (idaRetrieveModel
).