36 FOLLOWERS

Last asked: 30 Sep, 2014

QUESTION TOPICS

Singular Value Decomposition
Principal Component Analysis
Intuitive Explanations
Statistics (academic discipline)
Machine Learning
Algorithms
Mathematics
 

QUESTION STATS

Views7,318
Followers36
 
Edits

What is an intuitive explanation of the relation between PCA and SVD?

 
3 Answers
 




The result of this process is a ranked list of "directions" in the feature space ordered from most variance to least.  The directions along which there is greatest variance are referred to as the "principal components" (of variation in the data) and the common wisdom is that by focusing on the way the data is distributed along these dimensions exclusively, one can capture most of the information represented in in the original feature space without having to deal with such a high number of dimensions which can be of great benefit in statistical modeling and Data Science applications (see: When and where do we use SVD?).

What is the Formal Relation between SVD and PCA?
Let's let the matrix T
, where 
  1. M.
  2. M.
  3. And, M.
  • Note, M if they satisfy the following equations:
  • ⃗  and
  • ⃗ 

PCA: PCA sidesteps the problem of T
 so...
  • )
  • )
  • but since I
so
  • T

where  M
 can lead to numerical rounding errors when calculating the eigenvalues/vectors.
  
David Beniaguev
486 Views
 
  
Tigran Ishkhanov
1.3k Views
 
PCA is a statistical technique in which SVD is used as a low level linear algebra algorithm. One can apply SVD to any matrix C. In PCA this matrix C arises from the data and has a statistical meaning - the element c_ij is a covariance between i-th and j-th coordinates of your dataset after mean-normalization.
  
 
 

相关文章:

  • 2021-07-22
  • 2021-08-28
  • 2021-12-12
  • 2021-08-11
  • 2021-12-03
  • 2021-11-17
  • 2021-12-05
  • 2021-12-17
猜你喜欢
  • 2022-12-23
  • 2022-01-22
  • 2022-03-08
  • 2022-01-04
  • 2020-03-19
  • 2021-09-17
  • 2022-02-26
相关资源
相似解决方案