比较 R 中的 svd 和 princomp

发布于 2024-12-08 04:14:12 字数 181 浏览 4 评论 0原文

我想获取 R 中矩阵的奇异值来获取主成分,然后也使 princomp(x) 来比较结果

我知道 princomp() 会给出主成分

问题

如何从 $d、$u 和 $v 中获取主成分(s = svd(x) 的解)?

I want to get singular values of a matrix in R to get the principal components, then make princomp(x) too to compare results

I know princomp() would give the principal components

Question

How to get the principal components from $d, $u, and $v (solution of s = svd(x) )?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那小子欠揍 2024-12-15 04:14:12

无论如何,您可能应该研究一下 prcomp,它使用 svd 而不是 eigen 来计算 PCA(如 princomp 中所示)代码>)。这样,如果您想要的只是 PCA 输出,但使用 svd 进行计算,那么您就很幸运了。

另外,如果您在命令行中输入 stats:::prcomp.default,您可以自己查看它如何使用 svd 的输出。

One way or another, you should probably look into prcomp, which calculates PCA using svd instead of eigen (as in princomp). That way, if all you want is the PCA output, but calculated using svd, you're golden.

Also, if you type stats:::prcomp.default at the command line, you can see how it's using the output of svd yourself.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文