当前位置:网站首页>【Seaborn】组合图表、多子图的实现
【Seaborn】组合图表、多子图的实现
2022-07-07 15:32:00 【AwesomeTang】
介绍
seaborn可以非常便捷的将各种图表组合起来,如在上一章使用row
和col
参数可以非常快速的根据数据生成多个图表;
本章主要介绍根据我们自己的个性需求生成组合图表,这里组合图表分成两种形式:
- 多子图:在一个画布上绘制多个坐标系;
- 图表重叠:将多个图表在一个坐标系展示;
多子图
在之前的内容中我们讲到了seaborn的图表层级,axes-level
图表是可以添加到matplotlib的复杂figure中的,seaborn中的axes-level
都有添加一个ax
参数用于指定在figure中的绘图位置;
如下面代码中,我们通过plt.subplots()
创建一个1行2列的figure
,我们可以非常便捷的将seaborn的图表添加进去;
import matplotlib.pyplot as plt
import seaborn as sns
penguins = sns
边栏推荐
猜你喜欢
Imitate the choice of enterprise wechat conference room
Pisa-Proxy SQL 解析之 Lex & Yacc
最新高频Android面试题目分享,带你一起探究Android事件分发机制
ByteDance Android gold, silver and four analysis, Android interview question app
Binary search tree (features)
最新阿里P7技术体系,妈妈再也不用担心我找工作了
爬虫(17) - 面试(2) | 爬虫面试题库
华东师大团队提出,具有DNA调控电路的卷积神经网络的系统分子实现
[C language] question set of X
预售17.9万,恒驰5能不能火?产品力在线,就看怎么卖
随机推荐
应用在温度检测仪中的温度传感芯片
字节跳动Android面试,知识点总结+面试题解析
射线与OBB相交检测
ATM system
最新2022年Android大厂面试经验,安卓View+Handler+Binder
Laravel service provider instance tutorial - create a service provider test instance
Pycharm IDE下载
整理几个重要的Android知识,高级Android开发面试题
23. 合并K个升序链表-c语言
LeetCode 152. 乘积最大子数组 每日一题
Pycharm terminal enables virtual environment
Binary search tree (basic operation)
【Vulnhub靶场】THALES:1
AutoLISP series (2): function function 2
Imitate the choice of enterprise wechat conference room
【DesignMode】模板方法模式(Template method pattern)
[designmode] template method pattern
[designmode] proxy pattern
LeetCode 1986. 完成任务的最少工作时间段 每日一题
【PHP】PHP接口继承及接口多继承原理与实现方法