Seaborn Jointplot Change Figsize

Viewed 9308

I am using Jupyter Notebook and want a full width jointplot figure.

I cant seem to get it working though.

g = sns.jointplot(x="pos", y="diff", data=plot_data)
plt.figure(figsize=(16, 6))

doesn't change the size at all.

fig, ax = plt.subplots(figsize=(16, 6))
g = sns.jointplot(ax=ax, x="pos", y="diff", data=plot_data)

Throws an error.

1 Answers
Related