假设一组存储在变量 fig1 到 fig4 中的4个 matplotlib 图形。
import matplotlib.pyplot as plt
fig1 = plt.figure()
plt.plot([1, 2, 3, 4])
fig2 = plt.figure()
plt.plot([2, 2, 2, 2])
fig3 = plt.figure()
plt.plot([1, 3, 1, 4])
fig4 = plt.figure()
plt.plot([4, 3, 2, 1])
# code to create subplots using the fig1 to fig4 variables
# i.e. without recreating the original 4 plots
使用matplotlib(或其他软件包),如何创建子图(如下面的示例),并且子图为 fig1 到 fig4 ?
答案 0 :(得分:0)