This notebook contains simple explanation of PCA and it's importance in data reduction to avoid multi-collinearity in given variables of data.
- Principal component analysis is a dimention reduction technique that finds the variance maximizing directions onto which to project the data.
- Linear dimensionality reduction using Singular Value Decomposition of the data to project it to a lower dimensional space. The input data is centered but not scaled for each feature before applying the SVD.
- Principal components are calculated to reduce variance of features and thus reducing dimentionality of variables in dataset.
- Library imports
- Plotting continues numerical features
- PCA Object
- Plotting explained variance ratio
- Plotting explained variance ratio
- Plotting cummulative explained variance