tarrotob {PCovR} | R Documentation |
Oblique target rotation
tarrotob(F1, W)
F1 |
Matrix to be rotated |
W |
Target binary matrix |
T |
Rotation matrix |
A |
Rotated matrix |
Marlies Vervloet (marlies.vervloet@ppw.kuleuven.be)
Px <- matrix(rnorm(36),12,3)
print(Px)
W <- matrix(rbinom(36,1,.4),12,3)
Px_r <- tarrotob(Px,W)
print(Px_r$A)