You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*`spark.gbt`: `Gradient Boosted Tree Model forRegressionandClassification`
529
-
*`spark.randomForest`: `Random Forest Model forRegressionandClassification`
530
-
*`spark.als`: `Alternating Least Squares (ALS) matrix factorization Model`
531
-
*`spark.kstest`: `Kolmogorov-Smirnov Test`
519
+
*[`spark.glm`](api/R/spark.glm.html) or [`glm`](api/R/glm.html): [`Generalized Linear Model`](ml-classification-regression.html#generalized-linear-regression)
520
+
*[`spark.survreg`](api/R/spark.survreg.html): [`Accelerated Failure Time (AFT) Survival Regression Model`](ml-classification-regression.html#survival-regression)
*[`spark.gbt`](api/R/spark.gbt.html): `Gradient Boosted Tree Model for`[`Regression`](ml-classification-regression.html#gradient-boosted-tree-regression)`and`[`Classification`](ml-classification-regression.html#gradient-boosted-tree-classifier)
529
+
*[`spark.randomForest`](api/R/spark.randomForest.html): `Random Forest Model for`[`Regression`](ml-classification-regression.html#random-forest-regression)`and`[`Classification`](ml-classification-regression.html#random-forest-classifier)
530
+
*[`spark.als`](api/R/spark.als.html): [`Alternating Least Squares (ALS) matrix factorization Model`](ml-collaborative-filtering.html#collaborative-filtering)
Under the hood, SparkR uses MLlib to train the model. Please refer to the corresponding section of MLlib user guide for example code.
534
534
Users can call `summary` to print a summary of the fitted model, [predict](api/R/predict.html) to make predictions on new data, and [write.ml](api/R/write.ml.html)/[read.ml](api/R/read.ml.html) to save/load fitted models.
0 commit comments