专栏名称: EasyShu
EasyShu,易数据,我们将定期推送各种数据分析与可视化教程,包括R、Python、Excel(Power BI)、Matlab等各种学术与商业数据可视化。
目录
相关文章推荐
今天看啥  ›  专栏  ›  EasyShu

Python-Seaborn.catplot(1): 小提琴图等四类图

EasyShu  · 公众号  ·  · 2024-10-27 09:14
    

文章预览

本文介绍seaborn. catplot 函数可视化分类数据,涉及如下8种图,更换父类catplot中的kind参数即可,也可使用对应的子函数如下: stripplot(),此时(kind="strip",默认); swarmplot(),此时(kind="swarm") boxplot(),此时(kind="box"); violinplot(),此时(kind="violin"); boxenplot(),此时(kind="boxen") pointplot(),此时(kind="point"); barplot(),此时(kind="bar"); countplot(),此时(kind="count") 每类图函数都有自己独特的参数, 本文主要介绍前四类图 。 本文将了解什么? 1、seaborn.catplot简介 2、绘图数据集准备 3、seaborn. stripplot(分类散点图)  stripplot不分类散点图  stripplot分类散点图  设置点的属性   多重分类   catplot()结合stripplot和FacetGrid分图显示 4、seaborn. swarmplot(成簇散点图)  swarmplot不分类散点图  设置点的属性  5、seaborn. boxplot(箱图或箱线图) 6、seaborn. violinplot(小提琴图)   ………………………………

原文地址:访问原文地址
快照地址: 访问文章快照
总结与预览地址:访问总结与预览
推荐文章