Hi,
to gauge the psychological trait of narcissism among CEOs, I employ a 14-item measurement. The majority of papers applying this index combine these variables into a unified narcissism measurement using Principal Component Analysis. Despite the concerns many people have about PCA's overvalue in forming such indices, I'm considering it, potentially as a robustness test.
In one of the most cited paper, the authors detail a method to develop a CEO narcissism score:
The next step is to develop one overall CEO narcissism score, taking into account the balanced view and the broadness of the concept. For each of the four principal components, the factor loadings are multiplied by each individual CEO observation. The four standardized scores are added to form one CEO narcissism score. This CEO narcissism score ranges from 0 to 20, with a mean of 7.1 (SD = 2.1).
As I am not sure if the following commands replicate this approach, I would greatly appreciate your comments on that.
If I'm not completely off track here, according to #5 in this thread, my approach should use the first components to form my overall narcissism index CNS, right?
Thank you!
to gauge the psychological trait of narcissism among CEOs, I employ a 14-item measurement. The majority of papers applying this index combine these variables into a unified narcissism measurement using Principal Component Analysis. Despite the concerns many people have about PCA's overvalue in forming such indices, I'm considering it, potentially as a robustness test.
In one of the most cited paper, the authors detail a method to develop a CEO narcissism score:
The next step is to develop one overall CEO narcissism score, taking into account the balanced view and the broadness of the concept. For each of the four principal components, the factor loadings are multiplied by each individual CEO observation. The four standardized scores are added to form one CEO narcissism score. This CEO narcissism score ranges from 0 to 20, with a mean of 7.1 (SD = 2.1).
As I am not sure if the following commands replicate this approach, I would greatly appreciate your comments on that.
Code:
pca $CNS, components(4) blanks(.2) //Extract four components estat kmo //Check feasibility of data for pca rotate, promax blanks(.2) //use oblique rotation predict CNS, score //Form the index based on the four extracted components
Thank you!
Comment