regcoefFromRes.RdGives coefficients from latent regression model (conditioning model) in a data frame.
regcoefFromRes(resultsObj, digits = NULL)
The object returned by getResults.
Optional: integer value if coefficients should be rounded.
A list of data frame(s) with three columns, containing model name, dimension name, and the corresponding regression coefficients.
### read exemplary results object
file <- system.file("extdata", "results.rda", package = "eatModel")
if (nzchar(file)) {
load(file)
regs <- regcoefFromRes(res)
}
#> No regression coefficients found in results object.