matplotlib的基本用法——subplot绘制多图
Posted SnailTyan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matplotlib的基本用法——subplot绘制多图相关的知识,希望对你有一定的参考价值。
文章作者:Tyan
博客:noahsnail.com | CSDN | 简书
本文主要使用matplotlib进行多图的绘制。
- Demo 1
import matplotlib.pyplot as plt
plt.figure()
# 绘制第一个图
plt.subplot(2, 2, 1)
plt.plot([0, 1], [0, 1])
# 绘制第二个图
plt.subplot(2, 2, 2)
plt.plot([0, 1], [0, 1])
# 绘制第三个图
plt.subplot(2, 2, 3)
plt.plot([0, 1], [0, 1])
# 绘制第四个图
plt.subplot(2, 2, 4)
plt.plot([0, 1], [0, 1])
plt.show()
- 结果
- Demo 2
import matplotlib.pyplot as plt
plt.figure()
# 绘制第一个图
plt.subplot(2, 1, 1)
plt.plot([0, 1], [0, 1])
# 绘制第二个图
plt.subplot(2, 3, 4)
plt.plot([0, 1], [0, 1])
# 绘制第三个图
plt.subplot(2, 3, 5)
plt.plot([0, 1], [0, 1])
# 绘制第四个图
plt.subplot(2, 3, 6)
plt.plot([0, 1], [0, 1])
plt.show()
- 结果
参考资料
以上是关于matplotlib的基本用法——subplot绘制多图的主要内容,如果未能解决你的问题,请参考以下文章
matplotlib ----- 多子图, subplots
Python机器学习(六十六)Matplotlib 基本概念