Skip to contents

Extract loadings from PCA of constructs.

Usage

constructPcaLoadings(x)

Arguments

x

repgrid object. This object is returned by the function constructPca().

Value

A matrix containing the factor loadings.

Examples


p <- constructPca(bell2010)
l <- constructPcaLoadings(p)
l[1, ]
#>        RC1        RC2        RC3 
#> -0.2601269  0.1385807 -0.9003533 
l[, 1]
#>                          relaxed - worried & tense 
#>                                        -0.26012690 
#> not so smart (academically) - smart (academically) 
#>                                         0.25510372 
#>                     dislikes sports - loves sports 
#>                                         0.19979791 
#>                     not interactive - loves people 
#>                                         0.05781657 
#>                      not transparent - transparent 
#>                                        -0.04299511 
#>                            insensitive - sensitive 
#>                                        -0.80601096 
#>                           fearful&timid - fearless 
#>                                         0.89788685 
#>                                     rough - gentle 
#>                                        -0.79351946 
#>                   accept as it is - loves to argue 
#>                                         0.72444964 
l[1, 1]
#> [1] -0.2601269