Deciding the Number of PCs with Non-Graphical Solutions to the Scree Test
PCA
Tutorials
Author
Edoardo Costantini
Published
May 16, 2022
Introduction
Here I describe two different solutions to decide which number of components to sue for PCA with non-graphical solutions to teh scree test:
Kaiser Rule (aka Optimal Coordinate) \(n_{oc}\). In its simplest form, the Kaiser’s rule retains only the PCs with variances exceeding 1. If a PC has less variance than 1, it means that it explains less total variance than a single variable in the data, which makes it useless.
Acceleration Factor. For every \(j\)-th eigenvalue, the acceleration factor \(a\) is calculated as the change in the slope between the line connecting the \(eig_j\) and \(eig_{j-1}\), and the line connecting \(eig_j\) and \(eig_{j+1}\)\[
a_{j} = (eig_{j+1} - eig_{j}) - (eig_{j} - eig_{j-1})
\] Once the largest \(a_j\) is found, the number of components is set to \(j-1\).