ComenzarEmpieza gratis

Calculating Principal Components

You'll visually inspect a 4 feature sample of the ANSUR dataset before and after PCA using Seaborn's pairplot(). This will allow you to inspect the pairwise correlations between the features.

The data has been pre-loaded for you as ansur_df.

Este ejercicio forma parte del curso

Dimensionality Reduction in Python

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Create a pairplot to inspect ansur_df
sns.____(____)

plt.show()
Editar y ejecutar código