| showObj.cgPairedDifferenceFit {cg} | R Documentation |
Show a Fitted Model object from the cg package
Description
Show the raw form of a cgPairedDifferenceFit object, which contains model fit
information.
Usage
## S4 method for signature 'cgPairedDifferenceFit'
showObj(object)
Arguments
object |
A |
Details
The object is shown using showDefault. See
cgPairedDifferenceFit
for details of the object slots.
The name showObj is designed for use for cases like this when
the coventional show name is an alias for print.
Value
showObj.cgPairedDifferenceFit returns invisible.
The main purpose is the side
effect of printing the whole object 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
cgOneFactorFit, cgPairedDifferenceFit,
showDefault
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(data=anorexiaFT.data, type="rr")
showObj(anorexiaFT.fit)
show(anorexiaFT.fit) ## alias for print method on the object
[Package cg version 1.0-3 Index]