LoslegenKostenlos loslegen

Choosing the number of components

You'll now make a more informed decision on the number of principal components to reduce your data to using the "elbow in the plot" technique. One last time, you'll work on the numeric ANSUR female dataset pre-loaded as ansur_df.

All relevant packages and classes have been pre-loaded for you (Pipeline(), StandardScaler(), PCA()).

Diese Übung ist Teil des Kurses

Dimensionality Reduction in Python

Kurs anzeigen

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Pipeline a scaler and PCA selecting 10 components
pipe = ____([('scaler', ____),
        		 ('reducer', ____)])
Code bearbeiten und ausführen