| summary.cgPairedDifferenceFit {cg} | R Documentation | 
Summary display of a Paired Difference Model Fit object with some format options
Description
Summary printing of a cgPairedDifferenceFit object,
which contains fitted model information.
Usage
## S4 method for signature 'cgPairedDifferenceFit'
summary(object, title = NULL, endptname = NULL, ...)
Arguments
object | 
 An   | 
title | 
 The title printed out with the summary of the fitted model(s).
If   | 
endptname | 
 The endpoint name, printed out with the fitted model information. 
If   | 
... | 
 Additional arguments. Only one is currently valid: 
  | 
Details
The object summary is printed using a mix of cat and print
calls. See cgPairedDifferenceFit
for details of the *fit and other object slots.
This method simply echoes summary methods for individual fit classes,
such as lm and rlm.
Value
summary.cgPairedDifferenceFit returns
invisible. The main purpose is the side
effect of printing to the current output connection, which is
typically the console.
Note
Contact cg@billpikounis.net for bug reports, questions, concerns, and comments.
Author(s)
Bill Pikounis [aut, cre, cph], John Oleynick [aut], Eva Ye [ctb]
See Also
Examples
data(anorexiaFT)
anorexiaFT.data <- prepareCGPairedDifferenceData(anorexiaFT, format="groupcolumns",
                                                 analysisname="Anorexia FT",
                                                 endptname="Weight",
                                                 endptunits="lbs",
                                                 expunitname="Patient",
                                                 digits=1, logscale=TRUE)
anorexiaFT.fit <- fit(anorexiaFT.data)
summary(anorexiaFT.fit)