plot_pos = [321,322,323,324,313] # 每个子图的位置 y_lims = [(60,130), (50,120), (30,100), (0,60), (200,400)] # 每个子图的ylim参数 数据读取的修改比较简单,但是到画图时,如果还用 ax = plt.subplots(plot_pos[pos])方法的话,会报错 Traceback (most recent call last): File "....
# coding:utf-8 from pylab import * # 创建子图 figure1 = subplot(2,1,1) figure2 = subplot(2,1,2) # 选择子图1 sca(figure1) plot(x,func(x)) # 选择子图2 sca(figure2) plot(x,func(x)) # show show() # save savefig("test.svg") 解决 为什么呢??? 原来,子图需要挨个儿保存 --...