当前位置: 首页 > article >正文

Python数据可视化seaborn

产品经理在做数据分析时可能需要通过可视化来分析。seaborn官网

1. relplot 散点图

https://seaborn.pydata.org/examples/scatterplot_sizes.html

import pandas as pd
import seaborn as sns
df = pd.DataFrame({
    'x': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
    'y': [8, 6, 7, 8, 4, 6, 1, 3, 9, 4]
})
sns.relplot(data= df, x='x', y='y')

在这里插入图片描述

2. 分类散点图 strip plot

https://seaborn.pydata.org/examples/strip_regplot.html
在这里插入图片描述

3. 分类箱线图 boxplot

https://seaborn.pydata.org/examples/grouped_boxplot.html
在这里插入图片描述

4. 小提琴图 violinplot

https://seaborn.pydata.org/examples/wide_form_violinplot.html
在这里插入图片描述

5. 热力图 heatmap

https://seaborn.pydata.org/examples/spreadsheet_heatmap.html
在这里插入图片描述

6. 预览 pairplot

https://seaborn.pydata.org/examples/scatterplot_matrix.html
在这里插入图片描述


http://www.kler.cn/a/382138.html

相关文章:

  • Windows、Linux系统上进行CPU和内存压力测试
  • 网站504错误出现的原因以及如何修复
  • 5. Redis的 安全与性能优化
  • 32位汇编——通用寄存器
  • 初识数据结构(什么是数据结构、算法,数据结构的重要性,算法的重要性)
  • 6-解决Ubuntu系统与Windows系统双系统时间不同步问题
  • Idea如何推送项目到gitee
  • 使用 Python 写一个后端程序的项目方案
  • JDK 安装、环境变量配置、nano 和 vim 的使用
  • Fastify Swagger:自动化API文档生成与展示
  • Docker cp命令详解及实战案例
  • Python并发编程——multiprocessing
  • 自动化仓库堆垛机结构解析
  • 2025年山东省考报名流程图解
  • 基于stm32的火灾报警系统(开源)
  • vue使用方法创建组件
  • FRP反向代理使用
  • 使用 OpenCV 实现图像的透视变换
  • 数据结构,问题 E: 表达式括号匹配
  • 英语写作中用identify 替代find
  • Interpreter 解释器模式
  • 【C++组合数学】2850. 将石头分散到网格图的最少移动次数|2001
  • 51单片机教程(五)- LED灯闪烁
  • html练习2
  • 工作中问题
  • SQL,力扣题目1767,寻找没有被执行的任务对【递归】