1

I have a matrix with dimension nxp. No:of observations are not known. But no: of variables is 3. So p=3. Population mean is defined as µ1=1,µ2=-1,µ3=2.

$\sum$=

\begin{bmatrix} 1 & k & 0\\ k & 1 & k\\ 0 & k & 1\end{bmatrix} How to find the value of k such that the principal components PC1 and PC2 account for more than some percentage (say 75%) of total variation of X?

StatsMonkey
  • 150
  • 1
  • 7

1 Answers1

0

Given that the cumulative ratio of variance explained is equal to the sum of the reduced eigenvalues (see 1 for details), you have to

  • calculate the three eigenvalues of your matrix in function of k
  • reduce and sum the two first eigenvalues
  • find the value of k that gives you the needed percentage (ie : 0.75)
manu190466
  • 161
  • 1
  • 5