Hi, I am using e1071 package and trying to do classification on Iris dataset:
model <- naiveBayes(Species ~ ., data = iris) pred <- predict(model, iris[,]) How can I see conditional probability distribution of this model? And also how can I see maximum likelihood estimate for the model? Thanks. Sauli ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.