Understanding the components
You'll apply PCA to the numeric features of the Pokemon dataset, poke_df, using a pipeline to combine the feature scaling and PCA in one go. You'll then interpret the meanings of the first two components.
All relevant packages and classes have been pre-loaded for you (Pipeline(), StandardScaler(), PCA()).
Diese Übung ist Teil des Kurses
Dimensionality Reduction in Python
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Build the pipeline
pipe = Pipeline([('scaler', ____),
('reducer', ____(____))])