Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: shifting margins caused by multiple rugplots (#2953)
* Fix: shifting margins caused by multiple rugplots This fix prevents margins from increasing when multiple rugplots are added to the same `ax`, even if `expand_margins` is `False`. As a minimum reproducible example: ```py import seaborn as sns; sns.set() import numpy as np import matplotlib.pyplot as plt values = np.linspace(start=0, stop=1, num=5) ax = sns.lineplot(x=values, y=values) sns.rugplot(x=values, ax=ax) ylim = ax.get_ylim() for _ in range(4): sns.rugplot(x=values, ax=ax, expand_margins=False) if not all(a == b for a, b in zip(ylim, ax.get_ylim())): print(f'{ylim} != {ax.get_ylim()}') plt.suptitle("Example showing that multiple rugplots cause issues") plt.show() ``` Running the above code: ```sh $ pip install seaborn numpy matplotlib; python3 test.py (-0.1, 1.1) != (-0.61051, 1.14641) ``` This bug was caused by how seaborn detects the correct colors to use. In `seaborn/utils.py`, in method `_default_color`, the following line used to resolve to `ax.plot([], [], **kws)`: ```py scout, = method([], [], **kws) ``` But matplotlib has the parameters `scalex` and `scaley` of `ax.plot` set to `True` by default. Matplotlib would see that the rug was already on the `ax` from the previous call to `sns.rugplot`, and so it would rescale the x and y axes. This caused the content of the plot to take up less and less space, with larger and larger margins as more rugplots were added. The fix sets `scalex` and `scaley` both to `False`, since this plot method is a null-plot and is only used to check what colours should be used: ```py scout, = method([], [], scalex=False, scaley=False, **kws) ``` The above line is within an if-elif-else branch, but the other branches do not suffer this bug and so no change is needed for them. An additional unit test was also added to catch this bug: `test_multiple_rugs`. * Update PR based on comments * Remove unused import
- Loading branch information