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

    https://github.com/apache/spark/pull/17557#discussion_r110459968
  
    --- 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 --
    
    What do you mean by "real"? Something human readable (e.g. milk, bread, 
butter) or some standard pattern mining dataset? If the former one then it is 
not a problem. If the latter one I am not aware of any dataset which would be 
safe enough on the license side.


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