获得matplotlib表的正确显示

时间:2015-04-15 16:15:07

标签: python python-3.x matplotlib

我正在尝试使用matplotlib将一些数据绘制到表中。我的问题是我无法正常显示表格。

当我运行时:

    ncols = len(tableColumns)
    nrows = len(tableRows)
    fig = plt.figure(figsize=(ncols*wcell+wpad, nrows*hcell+hpad))
    ax = fig.add_subplot(111)
    ax.axis('off')
    ax.table(cellText=tableValues,rowLabels=tableRows,
                  colLabels=tableColumns,loc='center')
    plt.show()

我明白了:

enter image description here

我找不到如何控制它以获得以下结果:

  • 表完全符合图
  • 不允许重新调整大小
  • 长行名称(目前大部分不在视图中)完全显示

感谢。

0 个答案:

没有答案