Putting space between every two bars in seaborn's factorplot

39 views Asked by At

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:

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?

Update, data looks like this: enter image description here

Thanks in advance

0

There are 0 answers