Add a pca_loadings() function that returns the contribution of each original feature to each principal component.
PCA is an unsupervised dimensionality-reduction technique. While explained variance shows how much variance each component captures, PCA loadings help explain which original columns contribute most to those components. This would make Percentify’s PCA utilities more interpretable and useful for exploratory data analysis before model training.
Add a pca_loadings() function that returns the contribution of each original feature to each principal component.
PCA is an unsupervised dimensionality-reduction technique. While explained variance shows how much variance each component captures, PCA loadings help explain which original columns contribute most to those components. This would make Percentify’s PCA utilities more interpretable and useful for exploratory data analysis before model training.