I am currently trying to align a table of cells with gaussian
colWidths
:

But colWidths
it doesn't seem to work with bbox
. Do you know how I can proceed?
plt.table(cellText=tableData,
rowLabels=rowLabels,
colLabels=None,loc='center',colWidths=[0.2]*5,
bbox=[0., -0.5,1, 0.3])
source
share