我正在尝试使用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()
我明白了:
我找不到如何控制它以获得以下结果:
感谢。