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

    https://github.com/apache/spark/pull/17557#discussion_r110450322
  
    --- 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 --
    
    thanks! - I'd prefer example with real data...


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to