I'm producing a bar graph with a table using pandas.DataFrame.plot.
Is there a way to format the table size and/or font size in the table to make it more readable?
My DataFrame (dfexe):
City State Waterfalls Lakes Rivers
LA CA 2 3 1
SF CA 4 9 0
Dallas TX 5 6 0
Create a bar chart with a table:
myplot = dfex.plot(x=['City','State'],kind='bar',stacked='True',table=True)
myplot.axes.get_xaxis().set_visible(False)