PCA on a larger dataset
You'll now apply PCA on a somewhat larger ANSUR datasample with 13 dimensions, once again pre-loaded as ansur_df
. The fitted model will be used in the next exercise.
Since we are not using the principal components themselves there is no need to transform the data, instead, it is sufficient to fit pca
to the data.
Cet exercice fait partie du cours
Dimensionality Reduction in Python
Instructions
- Create the
scaler
. - Standardize the data.
- Create the
PCA()
instance. - Fit it to the standardized data.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
from sklearn.preprocessing import StandardScaler
from sklearn.decomposition import PCA
# Scale the data
scaler = ____
ansur_std = ____
# Apply PCA
pca = ____
pca.____