Hello, I am using PCA trying to create a composite measure based on a set of five variables. I have two questions I want to ask here:
1. Does it matter that the variables I put in PCA are not interval or ratio? The variables I am handling are all ordinal range from scale 1 to 5.
2. After PCA, I was able to get two components that capture most of the variance in the data and the two new variables were added to the data using the following syntax
However, since I have to run a mixed model using the newly created composite measure (aka, the newly created component variables: pc1, pc2), which one should I use then (I only need one outcome)? Can I further aggregate the two components in one or what should I do in order to make one single outcome for the mixed model?
Thanks
1. Does it matter that the variables I put in PCA are not interval or ratio? The variables I am handling are all ordinal range from scale 1 to 5.
2. After PCA, I was able to get two components that capture most of the variance in the data and the two new variables were added to the data using the following syntax
Code:
predict pc1 pc2, score
Thanks
Comment