使用python教程的主成分分析(PCA)

2024-04-20 15:37:58 发布

您现在位置:Python中文网/ 问答频道 /正文

是否有任何机构有使用python进行主成分分析(PCA)的教程,包括代码和解释?在


Tags: 代码机构教程成分pca
2条回答

用于数据处理的模块化工具箱可能会有所帮助: http://mdp-toolkit.sourceforge.net/

我要推荐塞巴斯蒂安·拉什卡的Principal Component Analysis in 3 Simple Steps

Principal Component Analysis (PCA) is a simple yet popular and useful linear transformation technique that is used in numerous applications, such as stock market predictions, the analysis of gene expression data, and many more. In this tutorial, we will see that PCA is not just a “black box”, and we are going to unravel its internals in 3 basic steps.

它有一个关于PCA的简短的介绍,有大量图片的例子,利用了pandas,而且它完全是在Python上制作的。

相关问题 更多 >