0

I am struggling to change my displot bar colours.

I want to change the colour of the bars to the light blue colour on at the end of the palette (shown below).

enter image description here

I have tried this, but the colour seems to remain as a dark blue, which is not what I want.

sns.color_palette("light:b", as_cmap=True)
sns.displot(data=df, x="col_1", height=7, aspect=2.8, palette="light:b") 

How do I change the colours to a specific colour in the palette?

Trenton McKinney
  • 56,955
  • 33
  • 144
  • 158

1 Answers1

0

Just define your custom colour palette.

palette = ["#090364", "#091e75", "#093885", "#085396", "#086da6", 
           "#0888b7", "#08a2c7" ]

sns.set_style("whitegrid")
plot = sns.displot(....,palette=sns.color_palette(palette, len(palette)),...)
ashraful16
  • 2,742
  • 3
  • 11
  • 32