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

    https://github.com/apache/spark/pull/15777#discussion_r88483092
  
    --- Diff: python/pyspark/ml/tests.py ---
    @@ -1097,6 +1097,44 @@ def test_logistic_regression_summary(self):
             sameSummary = model.evaluate(df)
             self.assertAlmostEqual(sameSummary.areaUnderROC, s.areaUnderROC)
     
    +    def test_gaussian_mixture_summary(self):
    +        data = [(Vectors.dense(1.0),), (Vectors.dense(5.0),), 
(Vectors.dense(10.0),),
    +                (Vectors.sparse(1, [], []),)]
    +        df = self.spark.createDataFrame(data, ["features"])
    +        gmm = GaussianMixture(k=2)
    +        model = gmm.fit(df)
    +        self.assertTrue(model.hasSummary)
    +        s = model.summary
    +        self.assertTrue(isinstance(s.predictions, DataFrame))
    +        self.assertEqual(s.probabilityCol, "probability")
    +        self.assertTrue(isinstance(s.probability, DataFrame))
    +        self.assertEqual(s.featuresCol, "features")
    +        self.assertEqual(s.predictionCol, "prediction")
    +        self.assertTrue(isinstance(s.cluster, DataFrame))
    +        self.assertEqual(len(s.clusterSizes), 2)
    +        self.assertEqual(s.k, 2)
    +
    +        model._call_java("setSummary", None)
    --- End diff --
    
    We can do it, though typically the doc tests are for things that we want to 
test that also illustrate functionality to the users. And @jkbradley seemed 
against adding it as a doc test 
[here](https://github.com/apache/spark/pull/13557). I'll add it for now and we 
can revert it if we decide that's best.


---
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