I have the following table:
fig,ax = plt.subplots(1,1,figsize=(16,16))
ax.axis('off')
nrows= 6
ncols=3
table = ax.table(cellText=[['']*ncols]*nrows,loc='top', rowLoc='center',colLoc='center')
for j,text in zip(range(3),['Group','Chart','Comments']):
table[(0,j)].get_text().set_text(text)
for i,text in zip(range(1,nrows),list('ABCDE')):
table[(i,0)].get_text().set_text(text)
for i in range(nrows):
for j in range(ncols):
table[(i,j)].set_height(0.2)
table[(i,j)]._loc = 'center'
table[(i,j)].set_fontsize(16)
I am trying to add a line chart to the middle column (Chart)

for this example, the line can be just a diagonal
plt.plot([0,1],[0,1])
any ideas?

plt.subplots(6, 3)), plot the charts as usual and usetextto plot the table cells in the outer columns.