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

    https://github.com/apache/spark/pull/23072#discussion_r239701364
  
    --- Diff: R/pkg/tests/fulltests/test_mllib_clustering.R ---
    @@ -319,4 +319,18 @@ test_that("spark.posterior and spark.perplexity", {
       expect_equal(length(local.posterior), sum(unlist(local.posterior)))
     })
     
    +test_that("spark.assignClusters", {
    +  df <- createDataFrame(list(list(0L, 1L, 1.0), list(0L, 2L, 1.0),
    +                             list(1L, 2L, 1.0), list(3L, 4L, 1.0),
    +                             list(4L, 0L, 0.1)), schema = c("src", "dst", 
"weight"))
    +  clusters <- spark.assignClusters(df, initMode = "degree", weightCol = 
"weight")
    +  expected_result <- createDataFrame(list(list(4L, 1L),
    +                                          list(0L, 0L),
    +                                          list(1L, 0L),
    +                                          list(3L, 1L),
    +                                          list(2L, 0L)),
    +                                          schema = c("id", "cluster"))
    --- End diff --
    
    ditto for style


---

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

Reply via email to