NaiveBayesModel {MachineShop} | R Documentation |
Naive Bayes Classifier Model
Description
Computes the conditional a-posterior probabilities of a categorical class variable given independent predictor variables using Bayes rule.
Usage
NaiveBayesModel(laplace = 0)
Arguments
laplace |
positive numeric controlling Laplace smoothing. |
Details
- Response types:
factor
Further model details can be found in the source link below.
Value
MLModel
class object.
See Also
Examples
## Requires prior installation of suggested package e1071 to run
fit(Species ~ ., data = iris, model = NaiveBayesModel)
[Package MachineShop version 3.7.0 Index]