i was just wondering if anyone knows how to choose individual bar colours for a seaborn factor plot. I'm currently passing a list called custom_palette of all the colours that i want but this just results in all the bars being the same colour.
plot = sns.factorplot(legend = False, x='Region', y='Values', hue='Types', data=data, kind='bar', size=8, aspect=2, palette= custom_palette)