前言
同一个时间生成两个图,多个figure对象。
代码
# -*- coding: utf-8 -*-
import matplotlib.pyplot as plt
fig1 = plt.figure()
ax1 = fig1.add_subplot(111)
ax1.plot([1,2,3],[3,2,1])
plt.show()
fig2 = plt.figure()
ax2 = fig2.add_subplot(111)
ax2.plot([1,2,3],[1,2,3])
plt.show()
展示
后记
一直没有整理完,乘着现在偷偷捣腾完。