print.lm.madlib {PivotalR}R Documentation

Display results of linear regression

Description

This function displays the results of linear regression in a pretty format.

Usage

## S3 method for class 'lm.madlib'
print(x, digits = max(3L, getOption("digits") - 3L),
...)

## S3 method for class 'lm.madlib.grps'
print(x, digits = max(3L, getOption("digits") -
3L), ...)

## S3 method for class 'lm.madlib'
show(object)

## S3 method for class 'lm.madlib.grps'
show(object)

Arguments

x, object

The linear regression result object to be printed.

digits

A non-null value for ‘digits’ specifies the minimum number of significant digits to be printed in values. The default, ‘NULL’, uses ‘getOption("digits")’. (For the interpretation for complex numbers see signif.) Non-integer values will be rounded down, and only values greater than or equal to 1 and no greater than 22 are accepted.

...

Further arguments passed to or from other methods. This is currently not implemented.

Value

No value is returned

Author(s)

Author: Predictive Analytics Team at Pivotal Inc.

Maintainer: Frank McQuillan, Pivotal Inc. fmcquillan@pivotal.io

See Also

madlib.lm Wrapper for MADlib linear regression

Examples

## see the examples in madlib.lm

[Package PivotalR version 0.1.18.3.1 Index]