Question: Objective : Feature Selection and Dimensionality Reduction Question: Can Principal Component Analysis (PCA) effectively reduce the number of features in the dataset while preserving 90%
Objective : Feature Selection and Dimensionality Reduction
Question: Can Principal Component Analysis (PCA) effectively reduce the number of features in the dataset while preserving 90% of the variance to simplify the classification model? Use python scripting to the problem
import matplotlib.pyplot as pltimport numpy as np import pandas as pd df = pd.read_csv('student_prediction.csv')df.head()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
