可视化检测冗余特征
数据可视化是任何数据探索中的关键一步。 让我们使用 Seaborn 来探索美国陆军 ANSUR 体测数据集的一些样本。
两个数据样本已预加载为 ansur_df_1 和 ansur_df_2。
Seaborn 已以 sns 导入。
本练习是课程的一部分
Python 中的降维
交互式实操练习
通过完成这段示例代码来试试这个练习。
# Create a pairplot and color the points using the 'Gender' feature
sns.____(____, ____=_____, diag_kind='hist')
# Show the plot
plt.show()