I am trying to plot my non-symmetric data using Seaborn\'s JointGrid. I can get it to use an equal aspect ratio, but then I have unwanted whitespace:
How do
For those who use Seaborn into a Jupyter Notebook, I suggest calling set_figwidht() and set_figheight() just after the sns.jointplot() command.
set_figwidht()
set_figheight()
sns.jointplot()
my_plot=sns.jointplot(x="K",y="errori",data=risultati , kind="scatter") my_plot.fig.set_figwidth(13)
Jupyter Example