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
The objects interface looks great, in particular the ability to have combination pair and facet plots. However, I ran into a bug when attempting to log-scale an axis for a paired plot with seaborn==0.12.0b2.
Expected behavior (no log-scaling where none applied):
Hi @eringrant thank you so much for testing out the beta!
This might not be documented (yet), but individual variables in a paired plot can be scaled (and otherwise modified in Plot.limit, Plot.label, etc.) with {var}{idx}, i.e.:
Then there's a separate question of "if there are multiple y axes, should doing .scale(y="log") set a log scale on all of them?" I could imagine that being useful! Is that what you were expecting here?
Thanks, @mwaskom—being able to independently scale the y-axes by indexing them in this way is great. I didn't see that in the documentation, but perhaps I missed it.
Yes, I'd expect .scale(y="log") to scale all the axes! (And for that to be incompatible with scaling them independently as y1="log", etc.)
The
objects
interface looks great, in particular the ability to have combination pair and facet plots. However, I ran into a bug when attempting to log-scale an axis for apair
ed plot withseaborn==0.12.0b2
.Expected behavior (no log-scaling where none applied):
Unexpected behavior (no log-scaling even when calling
scale(y="log")
):Expected behavior (log-scaling works without
pair
ing):The text was updated successfully, but these errors were encountered: