A class containing information about a single univariate ACE model.
A generic function for extracting the Details
slot of an AceEstimation object.
# S4 method for AceEstimate GetDetails(object)
object | ACE object |
---|
The contents of the Details
list depends on the underlying
estimation routine. For example, when the ACE model is estimated with a DF
analysis, the output is an stats::lm()
object, because the stats::lm()
function
was used (ie, the basic general linear model). Alternatively, if the
user specified the lavaan::lavaan()
package should estimate that ACE model,
the output is a lavaan::lavaan()
object.
Objects can be created by calls of the
form:
new("AceEstimate", aSquared, cSquared, eSquared, caseCount, unity, withinBounds, details, ...)
Will Beasley
#> Class "AceEstimate" [package "NlsyLinks"] #> #> Slots: #> #> Name: ASquared CSquared ESquared CaseCount Unity #> Class: numeric numeric numeric numeric logical #> #> Name: WithinBounds Details #> Class: logical list#> [1] "Results of ACE estimation: [show]" #> ASquared CSquared ESquared CaseCount #> 0.5 0.2 0.3 40.0#> [1] "Results of ACE estimation: [show]" #> ASquared CSquared ESquared CaseCount #> 0.5 0.2 0.3 40.0