ComeçarComece de graça

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()).

Este exercício faz parte do curso

Dimensionality Reduction in Python

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Build the pipeline
pipe = Pipeline([('scaler', ____),
        		 ('reducer', ____(____))])
Editar e executar o código