I am trying to create a bar plot with 11 different colors.
ax = sns.barplot(x=newx, y=newy, palette=sns.color_palette("Set2", n_colors=len(pairs)))
But I am getting only 8 different colors, and the last 3 bars repeating
the colors of the first 3 bars.
The pairs length is 11. The same result I am getting with Set1.