我正在使用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])
1条答案
按热度按时间ecfsfe2w1#
使用
set_visible
取消隐藏最后一个子图: