Skip to content

Tag: seaborn

Changing color of seaborn plot line

I can’t change the color of a 2d line in seaborn. I have 2 lines in my plot and I want to assign different colors for both of them. But color=’red’ does not change the color, why? Answer You have a couple of options here. You can tweak your use of the color parameter, or you can use the pale…

Prevent Sharing of Y Axes in a relplot

I’m having trouble getting seaborn’s relplot function to plot with different y axes on each row (while sharing x axes per column). I can see that both the FacetGrid and catplot methods in seaborn have a sharex/sharey keyword argument that would solve my problem, but I can’t find a similar on…