puc | R Documentation |
Percent of uncontaminated correlations (PUC) from bifactor model.
puc(numItems, numSpecificFactors)
numItems |
Number of items (or indicators). |
numSpecificFactors |
Number of specific factors. |
Estimates the percent of uncontaminated correlations (PUC) from a bifactor model. The PUC represents the percentage of correlations (i.e., covariance terms) that reflect variance from only the general factor (i.e., not variance from a specific factor). Correlations that are explained by the specific factors are considered "contaminated" by multidimensionality.
Percent of Uncontaminated Correlations (PUC).
Other structural equation modeling:
equiv_chi()
,
make_esem_model()
,
satorraBentlerScaledChiSquareDifferenceTestStatistic()
,
semPlotInteraction()
puc(
numItems = 9,
numSpecificFactors = 3
)
mydata <- data.frame(
numItems = c(9,18,18,36,36,36),
numSpecificFactors = c(3,3,6,3,6,12)
)
puc(
numItems = mydata$numItems,
numSpecificFactors = mydata$numSpecificFactors
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.