When doing a PCA using the largest eigenvectors associated with the largest eigenvalues, what does the values of the eigenvalues means?
Example:
The 2 largest eigenvectors of my dataset are these:
1 - [ 6.62257875e-01 -1.63390189e-01 7.31243512e-01 -1.13386505e-04 -9.65364160e-05 1.02781966e-03]
2 - [ 3.31219165e-01 -8.11563370e-01 -4.81309165e-01 4.26282496e-04 3.70709031e-05 2.55801611e-04]
How can I associate these values with the large dispersion of the data in a plot?
I assume that your data-matrix $X$ is $n\times 6$, so that each row represents a single data-point. I assume that the eigenvalues/eigenvectors that you are referring to are those of the matrix $X^TX$.
For $i=1,2$, let $\lambda_i,v_i$ denote the eigenvalue/eigenvector pairs with $\lambda_1 \geq \lambda_2$; note that your vectors are unit vectors. For each $i$, $\lambda_i$ is the variance of the $v_i$ component of the data points. That is, $\lambda_i$ is the variance of the dot-product $x \cdot v_i$ (among the rows $x$ of $X$). That is, if $\bar x$ denotes the average of the rows (the centroid of the data points), $\bar x \pm \sqrt{\lambda_i} v_i$ gives a standard error bar of the $v_i$ component.