I am making a pretty simple pandas/pylab bar plot with the following code:
df2 = pd.DataFrame(np.random.rand(10, 4), columns=['a', 'b', 'c', 'd'])
df2.plot(kind='bar', table=True)
plt.savefig('E:/chart.png')
The problem is that in the saved file chart.png the table is trimmed and only the first lines are visible. Is there any way to include the table in the image without having to make a subplot and render the table on a separate plot?