q3FromRes.RdCollects Q3 matrices in a list of data frames.
q3FromRes(resultsObj, out = c("wide", "long" ), triangular = FALSE)
The object returned by getResults.
Specifies the output format. "wide" gives a triangular matrix,
"long" gives a long format table with the residual correlation in
a separate column.
Logical: should the wide-format matrix be arranged in triangular shape?
A list of data frames, one data.frame per model.
### read exemplary results object
file <- system.file("extdata", "results.rda", package = "eatModel")
if (nzchar(file)) {
load(file)
q3 <- q3FromRes(res)
}