我们如何将单个标签分配给matplotlib.table中的多行或多列
例如,我有以下代码,其中allInfo
是熊猫DataFrame。
the_table=plt.table(cellText=allInfo.values,
colLabels=allInfo.columns,
rowLabels=allInfo.index,
loc='right',
cellLoc='left')