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

    https://github.com/apache/spark/pull/8620#discussion_r39005911
  
    --- Diff: docs/ml-features.md ---
    @@ -512,6 +512,25 @@ DataFrame dataset = jsql.createDataFrame(rdd, schema);
     remover.transform(dataset).show();
     {% endhighlight %}
     </div>
    +
    +<div data-lang="python" markdown="1">
    
+[`StopWordsRemover`](api/python/pyspark.ml.html#pyspark.ml.feature.StopWordsRemover)
    +takes an input column name, an output column name, a list of stop words,
    +and a boolean indicating if the matches should be case sensitive (false
    +by default).
    +
    +{% highlight python %}
    +from pyspark.ml.feature import StopWordsRemover
    +
    +sentenceData = sqlContext.createDataFrame([
    +  (0, ["I", "saw", "the", "red", "baloon"]),
    +  (1, ["Mary", "had", "a", "little", "lamb"])
    +], ["label", "raw"])
    +
    +remover = StopWordsRemover(inputCol="raw", outputCol="filtered")
    +filtered = remover.transform(sentenceData).show()
    --- End diff --
    
    * `show()` doesn't return anything
    * minor: it would be useful to call `show()` with `truncate=False` for user 
guide.


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