The output of PCA are the eigenvectors and eigenvalues of the covariance (or correlation) matrix of the original data. Let's say the are $x_1,...,x_n$ columns, then, there are $z_1,...,z_n$ eigenvalues and $\tilde{z_1},...,\tilde{z_n}$ eigenvectors. My question are:
- can I use the value
$\tilde{z_1}^{(1)},...,\tilde{z_1}^{(n)}$of the first (or also the other) eigenvector as weight of my model? for example as the weight of the columns$x_1,...,x_n$, a kind of Unsupervised method. - I understand the weight
$\tilde{z_1}^{(1)},...,\tilde{z_1}^{(n)}$as the contribution value of every column. Is it correct? - Can I use Spearman or Kendall correlation instead of covariance? Is it going to change the results?
I know that is it not a conventional way to use PCA but I would like to know if it makes sense.