Github user mengxr commented on a diff in the pull request:

    https://github.com/apache/spark/pull/11486#discussion_r56289840
  
    --- Diff: R/pkg/inst/tests/testthat/test_mllib.R ---
    @@ -141,3 +141,26 @@ test_that("kmeans", {
       cluster <- summary.model$cluster
       expect_equal(sort(collect(distinct(select(cluster, 
"prediction")))$prediction), c(0, 1))
     })
    +
    +test_that("naiveBayes", {
    +  training <- suppressWarnings(createDataFrame(sqlContext, iris))
    --- End diff --
    
    `iris` is not a good dataset for naive Bayes. @yinxusen Could you take a 
look at other base datasets that come with R? 
https://stat.ethz.ch/R-manual/R-devel/library/datasets/html/00Index.html It 
would be great if we can find one with categorical labels and count data. 
Otherwise, we can make a really simple one here.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to