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

    https://github.com/apache/spark/pull/16264#discussion_r92257313
  
    --- Diff: R/pkg/vignettes/sparkr-vignettes.Rmd ---
    @@ -526,6 +530,34 @@ gaussianFitted <- predict(gaussianGLM, carsDF)
     head(select(gaussianFitted, "model", "prediction", "mpg", "wt", "hp"))
     ```
     
    +#### Random Forest
    +
    +`spark.randomForest` fits a [random 
forest](https://en.wikipedia.org/wiki/Random_forest) classification or 
regression model on a `SparkDataFrame`.
    +Users can call `summary` to get a summary of the fitted model, `predict` 
to make predictions, and `write.ml`/`read.ml` to save/load fitted models.
    +
    +In the following example, we use the `longley` dataset to train a random 
forest and make predictions:
    +
    +```{r}
    --- End diff --
    
    updated


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