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

    https://github.com/apache/spark/pull/17557#discussion_r110465373
  
    --- Diff: R/pkg/vignettes/sparkr-vignettes.Rmd ---
    @@ -906,6 +910,24 @@ predicted <- predict(model, df)
     head(predicted)
     ```
     
    +#### FP-growth
    +
    +`spark.fpGrowth` executes FP-growth algorithm to mine frequent itemsets on 
a `SparkDataFrame`.
    +
    +* `spark.freqItemsets` method can be used to retrieve a `SparkDataFrame` 
with the frequent itemsets.
    +* `spark.associationRules` returns a `SparkDataFrame` with the association 
rules.
    +
    +
    +```{r}
    +items <- selectExpr(createDataFrame(data.frame(items = c(
    +  "s,t,u",
    --- End diff --
    
    something that is not coded in 3 lines ;)
    reading from a file if we could - if there isn't any dataset that we can 
license to use, can we anonymize an existing one?


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