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
When passing edgecolor to catplot for a bar, the argument doesn't reach the underlying p.plot_bars to generate the required output.
Currently there is a line edgecolor = p._complement_color(kwargs.pop("edgecolor", default), color, p._hue_map)
is not passed into the block elif kind=="bar". A local "hack" I implemented is to add a kwargs["edgecolor"] = edgecolor before p.plot_bars call. Let me know if I should provide more details.