print {PivotalR} | R Documentation |
This function displays the results of logistic regression in a pretty format.
## S3 method for class 'logregr.madlib' print(x, digits = max(3L, getOption("digits") - 3L), ...) ## S3 method for class 'logregr.madlib.grps' print(x, digits = max(3L, getOption("digits") - 3L), ...) ## S3 method for class 'logregr.madlib' show(object) ## S3 method for class 'logregr.madlib.grps' show(object) ## S3 method for class 'glm.madlib' print(x, digits = max(3L, getOption("digits") - 3L), ...) ## S3 method for class 'glm.madlib.grps' print(x, digits = max(3L, getOption("digits") - 3L), ...) ## S3 method for class 'glm.madlib' show(object) ## S3 method for class 'glm.madlib.grps' show(object)
x, object |
The logistic 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 |
... |
Further arguments passed to or from other methods. This is currently not implemented. |
No value is returned
Author: Predictive Analytics Team at Pivotal Inc.
Maintainer: Frank McQuillan, Pivotal Inc. fmcquillan@pivotal.io
madlib.glm
Wrapper for MADlib linear and logistic regression
## Not run: ## see the examples in madlib.glm ## End(Not run)