[GitHub] spark pull request #17316: [SPARK-15040][ML][PYSPARK] Add Imputer to PySpark

2017-03-24 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/spark/pull/17316 --- 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

[GitHub] spark pull request #17316: [SPARK-15040][ML][PYSPARK] Add Imputer to PySpark

2017-03-17 Thread MLnick
Github user MLnick commented on a diff in the pull request: https://github.com/apache/spark/pull/17316#discussion_r106615221 --- Diff: python/pyspark/ml/feature.py --- @@ -871,6 +872,164 @@ def idf(self): @inherit_doc +class Imputer(JavaEstimator, HasInputCols,

[GitHub] spark pull request #17316: [SPARK-15040][ML][PYSPARK] Add Imputer to PySpark

2017-03-17 Thread MLnick
Github user MLnick commented on a diff in the pull request: https://github.com/apache/spark/pull/17316#discussion_r106614985 --- Diff: python/pyspark/ml/feature.py --- @@ -871,6 +872,164 @@ def idf(self): @inherit_doc +class Imputer(JavaEstimator, HasInputCols,

[GitHub] spark pull request #17316: [SPARK-15040][ML][PYSPARK] Add Imputer to PySpark

2017-03-16 Thread hhbyyh
Github user hhbyyh commented on a diff in the pull request: https://github.com/apache/spark/pull/17316#discussion_r106488785 --- Diff: python/pyspark/ml/feature.py --- @@ -871,6 +872,164 @@ def idf(self): @inherit_doc +class Imputer(JavaEstimator, HasInputCols,

[GitHub] spark pull request #17316: [SPARK-15040][ML][PYSPARK] Add Imputer to PySpark

2017-03-16 Thread hhbyyh
Github user hhbyyh commented on a diff in the pull request: https://github.com/apache/spark/pull/17316#discussion_r106489373 --- Diff: python/pyspark/ml/feature.py --- @@ -871,6 +872,164 @@ def idf(self): @inherit_doc +class Imputer(JavaEstimator, HasInputCols,

[GitHub] spark pull request #17316: [SPARK-15040][ML][PYSPARK] Add Imputer to PySpark

2017-03-16 Thread hhbyyh
Github user hhbyyh commented on a diff in the pull request: https://github.com/apache/spark/pull/17316#discussion_r106490851 --- Diff: python/pyspark/ml/feature.py --- @@ -871,6 +872,164 @@ def idf(self): @inherit_doc +class Imputer(JavaEstimator, HasInputCols,

[GitHub] spark pull request #17316: [SPARK-15040][ML][PYSPARK] Add Imputer to PySpark

2017-03-16 Thread MLnick
GitHub user MLnick opened a pull request: https://github.com/apache/spark/pull/17316 [SPARK-15040][ML][PYSPARK] Add Imputer to PySpark Add Python wrapper for `Imputer` feature transformer. ## How was this patch tested? New doc tests and tweak to PySpark ML