How do I plot only a table in Matplotlib?

If you just wanted to change the example and put the table at the top, then loc=’top’ in the table declaration is what you need, Then adjusting the plot with, A more flexible option is to put the table in its own axis using subplots, which looks like this, You are then free to adjust the locations of the … Read more

Add Legend to Seaborn point plot

I would suggest not to use seaborn pointplot for plotting. This makes things unnecessarily complicated.Instead use matplotlib plot_date. This allows to set labels to the plots and have them automatically put into a legend with ax.legend(). In case one is still interested in obtaining the legend for pointplots, here a way to go: