You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, running this code in IPython generates an extra, blank, partially-formatted set of axes below the plot of the data (which has not received the formatting specified to g):
Running 0.6.dev on Python 3.4 (Homebrew).
The text was updated successfully, but these errors were encountered:
Solved my particular problem using size and aspect, but nevertheless I would expect that once ax is specified for g that all subsequent methods applied to g would operate on those axes.
Indeed, we can say more strongly: factorplot does not at all obey axes specification. See here for an explanation.
If you just want to set up the axes that way so you can have a figure with a specific size, you can pass size=8, aspect=14 / 8. to factorplot. Note also that since you're on 0.6 dev you can do hue grouping in sns.boxplot, which can plot onto an existing Axes.
I'm trying to generate a
factorplot
on a specific set of axes, which I generate using matplotlib'ssubplots
function.However, running this code in IPython generates an extra, blank, partially-formatted set of axes below the plot of the data (which has not received the formatting specified to
g
):Running 0.6.dev on Python 3.4 (Homebrew).
The text was updated successfully, but these errors were encountered: