Percentage of explained variance in axes of final plot
MarcinKosinski opened this issue · 1 comments
MarcinKosinski commented
At first it looks like the PCA is performed for multi-dimensional-scaling to represent topics in 2 dimensions - this is the conclusion that comes up from the axis labels.
But when one looks closer to the default jsPCA
function, it looks like the reduction is made on dissimilarity matrix (not on the regular dataset) and what is more, the cmdscale
function (used in jsPCA
) is used to perform dimension reduction and not the prcomp
.
- How this is relevant to PCA on axis labels?
- Shouldn't you write
MDS1
andMDS2
instead ofPCA1
andPCA2
? - If somehow
cmdscale
perform semi-similiar operations to PCA computations, is it possible to calculate eigen value for every component and to present thepercentage of explained variance
on axises next toPCAx
text?
MarcinKosinski commented
@cpsievert I am not so skilled in math. Would you rather ask me such questions privately or on stats stackoverflow?