【发布时间】:2016-03-28 23:47:47
【问题描述】:
我有以下情节:
并且我需要在“整体”x 轴上放置一些文本——这样描述清楚地适用于沿列的三个图表中的每一个的 x 轴。
如何访问包含子图的表格的 x 轴标签? (或此处适用的任何对象)。
我使用以下代码创建了图表:
import matplotlib.pyplot as plt
f,(ax1,ax2,ax3) = plt.subplots(1,3, sharey=True)
#plotted my stuff
....
#now: how to add general label to entire subplot
【问题讨论】:
标签: python matplotlib