PCA Implementation Steps: 1 to 3
This lesson will introduce you to the pre-model algorithm and familiarize you with the implementation steps (1-3) of the principal component analysis.
We'll cover the following...
Quick overview of the pre-model algorithm
As an extension of the data scrubbing process, unsupervised learning algorithms are sometimes used to advance a supervised learning algorithm to prepare the data for prediction modeling. In this way, unsupervised algorithms are used to clean or reshape the data rather than derive actionable insight.
Examples of pre-model algorithms include dimension reduction techniques, as introduced in the previous chapter, and k-means clustering. Both of these algorithms are examined in this chapter.
PCA
One of the most popular dimension reduction techniques is
The practical goal of PCA is to find a low-dimensional representation of the dataset that preserves as much about the original variables as possible. Rather than removing individual features ...