summary {SparkR}R Documentation

Summary

Description

Computes statistics for numeric columns of the DataFrame

Returns the summary of a model produced by glm(), similarly to R's summary().

Usage

## S4 method for signature 'DataFrame'
summary(x)

summary(x, ...)

## S4 method for signature 'PipelineModel'
summary(x, ...)

Arguments

x

A fitted MLlib model

Value

a list with a 'coefficient' component, which is the matrix of coefficients. See summary.glm for more information.

Examples

## Not run: 
##D model <- glm(y ~ x, trainingData)
##D summary(model)
## End(Not run)

[Package SparkR version 1.5.1 Index]