Michael Waskom
Michael Waskom
Agreed that this is an edge case. The visibility logic is needed to avoid ending up with interior axis labels on a facetgrid (or other shared-axes plot). The current solution...
You could also get creative with your rcparams and eg set the tick (label) size to 0. Just mentioning it as a workaround.
Also flagging that this is not a `scatterplot` specific issue, most functions go through the relevant codepath here.
This is well intentioned, but I think it is not ultimately workable because there are ambiguous edge cases. A value may be both the name of a column in a...
This makes sense. I think these are relatively new rcParams?
The `RcParams` object isn't a simple dictionary and does some parameter validation so if you try to modify `figure.labelsize` on the current minimally-supported seaborn version it raises ```python import matplotlib.pyplot...
Thanks for the clear report. Interestingly, when I tried to reduce it to an even simpler example that should have the same characteristics (integer type data with a nominal scale)...
Few thoughts: - I find the fact that pandas lets you easily get into trouble like this with duplicate indices annoying, but that's the world we live in so it's...
There was some pretty strong pushback when I suggested that in previous conversations (relating to the function interface). It's a bit surprising of an opinion from my perspective — assuming...
> Maybe this PR is at fault: https://github.com/mwaskom/seaborn/pull/1313 This PR was not merged so I think you have to hold it blameless... > WORKAROUND You don't actually need the for...