summary {SparkR} | R Documentation |
Computes statistics for numeric columns of the DataFrame
Returns the summary of a model produced by glm(), similarly to R's summary().
## S4 method for signature 'DataFrame' summary(x) summary(x, ...) ## S4 method for signature 'PipelineModel' summary(x, ...)
x |
A fitted MLlib model |
a list with a 'coefficient' component, which is the matrix of coefficients. See summary.glm for more information.
## Not run:
##D model <- glm(y ~ x, trainingData)
##D summary(model)
## End(Not run)