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 plot draws the vertical line if applicable, then draws the outer ridge line (no fill), then draws the inner ridge line (filled). When the inner interval is small, we get some weirdness:
Reversing the draw order (inner then outer) is an improvement.
But ultimately, we need a "blank" fill on the outer interval for the points that land outside of the inner interval.
So
draw inner interval
draw full outer interval with no fill
draw outer interval where x <= min(inner$x) or max(inner$x) <= x with blank fill, inheriting the fill from the global plotting theme. (Consider though infer annotation aesthetics from global theme #120)
The plot draws the vertical line if applicable, then draws the outer ridge line (no fill), then draws the inner ridge line (filled). When the inner interval is small, we get some weirdness:
Reversing the draw order (inner then outer) is an improvement.
But ultimately, we need a "blank" fill on the outer interval for the points that land outside of the inner interval.
So