matplotlib 如何在Pandas绘制的图形中添加新的子情节?

fiei3ece  于 2022-11-15  发布在  其他
关注(0)|答案(1)|浏览(127)

我正在使用panda.DataFrame.plot()从panda.dataframe Dataframe 创建一个情节,它创建了3x2个子情节。我想在最后一个点上添加一个新的子情节。但是,它没有出现。有什么解决办法吗?

ax = DF.plot(x = 'time', 
         y = ['A', 'B', 'C', 'D', 'E'], 
         kind = 'line',
         subplots ='True', 
         layout = (3, 2),
         figsize = (12*2/2.54, 8*3/2.54))
DF.plot(x = 'A', 
        y = 'B', 
        kind = 'line',
        ax = ax[2, 1])
ecfsfe2w

ecfsfe2w1#

使用set_visible取消隐藏最后一个子图:

DF.plot(x = 'A', 
        y = 'B', 
        kind = 'line',
        ax = ax[2, 1])
ax[2, 1].set_visible(True)

相关问题