Quantcast
Viewing all articles
Browse latest Browse all 14069

Putting space between every two bars in seaborn's factorplot

I have a drawn a plot using seaborn and the following command:

ax = sns.factorplot(x="feat", y="acc", col="roi", hue="alpha", data=df_d_pt, kind="bar", dodge=True)

Results look like this:

Image may be NSFW.
Clik here to view.
enter image description here

But I want to put space between every two bars, that is bars with dark blue and light blue would be very close to each other but some space between the dard blue bar and the light green one (and so on...)

How can I do that?

Thanks in advance


Viewing all articles
Browse latest Browse all 14069

Trending Articles