Description
Following SPARK-13011, we can add a wrapper for naive Bayes in SparkR. R's naive Bayes implementation is from package e1071 with signature:
## S3 method for class 'formula' naiveBayes(formula, data, laplace = 0, ..., subset, na.action = na.pass) ## Default S3 method, which we don't want to support # naiveBayes(x, y, laplace = 0, ...) ## S3 method for class 'naiveBayes' predict(object, newdata, type = c("class", "raw"), threshold = 0.001, eps = 0, ...)
It should be easy for us to match the parameters.
Attachments
Issue Links
- relates to
-
SPARK-13641 getModelFeatures of ml.api.r.SparkRWrapper cannot (always) reveal the original column names
- Resolved
-
SPARK-13011 K-means wrapper in SparkR
- Resolved
- links to