admin管理员组文章数量:1344303
I am currently using R Studio and tackling a task that'd require me to create a visual that allows me to examine the loadings from PC1 and PC2 from a PCA and identify which loadings (disregarding the sign) are greater than 0.3.
I am aware that this information is readily and simply available by looking at the console output for:
round(pca$rotation, 3)
Where I am rounding to 3 d.p. the Loadings/coefficients for the PCs found in a PCA called "pca"
However, for the sake of my task, I'd like to be able to reinforce these numbers with a simple visual like a barplot or something that's doable using tidyverse packages.
I am currently using R Studio and tackling a task that'd require me to create a visual that allows me to examine the loadings from PC1 and PC2 from a PCA and identify which loadings (disregarding the sign) are greater than 0.3.
I am aware that this information is readily and simply available by looking at the console output for:
round(pca$rotation, 3)
Where I am rounding to 3 d.p. the Loadings/coefficients for the PCs found in a PCA called "pca"
However, for the sake of my task, I'd like to be able to reinforce these numbers with a simple visual like a barplot or something that's doable using tidyverse packages.
Share Improve this question edited yesterday Xinovy asked yesterday XinovyXinovy 113 bronze badges New contributor Xinovy is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct.1 Answer
Reset to default 1Just use barplot
.
barplot(pcar[, c('PC1', 'PC2')], beside=TRUE, col=seq_len(ncol(pcar)) + 1,
legend=rownames(pcar), args.legend=list(x='top'))
abline(h=0.3, col='red', lty=2)
Data:
pcar <- prcomp(USArrests)$rotation
本文标签: rHow to visualize PCA variable loadings as barplotStack Overflow
版权声明:本文标题:r - How to visualize PCA variable loadings as barplot? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743797480a2540695.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论