barplot、pointplot 和 countplot
最后一组分类图包括 barplot、pointplot 和 countplot,用于对数据进行统计汇总。这些图的 API 与其他图形类似,并且可以根据具体问题进一步自定义。
本练习是课程的一部分
Seaborn 数据可视化进阶
交互式实操练习
通过完成这段示例代码来试试这个练习。
# Show a countplot with the number of models used with each region a different color
sns.____(data=df,
y="____",
hue="____")
plt.show()
plt.clf()