make.table {openCR} | R Documentation |
Tabulate Estimates From Multiple Models
Description
Session-specific estimates of real parameters (p, phi, etc.) are arranged in a rectangular table.
Usage
make.table(fits, parm = "phi", fields = "estimate", strata = 1,
collapse = FALSE, ...)
Arguments
fits |
openCRlist object |
parm |
character name of real parameter estimate to tabulate |
fields |
character column from predict (estimate, SE.estimate, lcl, ucl) |
strata |
integer; indices of strata to report |
collapse |
logical; if TRUE stratum-specific results are collapsed to single table |
... |
arguments passed to |
Details
The input will usually be from par.openCR.fit
.
collate.openCR
is a flexible alternative.
Value
A table object.
See Also
collate.openCR
,
par.openCR.fit
,
openCRlist
Examples
## Not run:
arglist <- list(
constant = list(capthist = ovenCHp, model = phi~1),
session.specific = list(capthist = ovenCHp, model = phi~session)
)
fits <- par.openCR.fit(arglist, trace = FALSE)
print(make.table(fits), na = ".")
## End(Not run)
[Package openCR version 2.2.6 Index]