Skip to content

Latest commit

 

History

History
72 lines (44 loc) · 2.9 KB

File metadata and controls

72 lines (44 loc) · 2.9 KB

Principal Component Analysis (PCA)

Back to Index


Objective

Learn PCA

Prerequisite Reading

About Dimension Reduction

PCA - Principal Component Analysis

Extra Reading

A Little Math

Knowledge Check

  • Why not use all dimensions for ML?
  • What is the difference between feature selection and dimension reduction?
  • What is the use case for PCA?
  • What are principal components (PC)?
  • What would be the trend of successive eigen values of PCs?
  • What about cummulative eigen values of PCs?
  • What does a correlation matrix of PCs look like?

Exercises

Difficulty Level

★☆☆ - Easy
★★☆ - Medium
★★★ - Challenging
★★★★ - Bonus

EX-1: Using PCA to visualize (★☆☆)

Start with this pca-1-intro notebook.

Here we will reduce dimensions of a mtcars dataset to 2 dimensions so we can do a plot

EX-2: PCA on wine quality data (★★☆)

Start with this pca-2-wine-quality notebook.

We will perform PCA wine quality data

More Exercises