Color palette of seaborn scatterplot is not working
Asked Answered
S

1

6

I am trying to use the sequential color brewer palette of seaborn scatter plot, but it does not work properly. This is what I have done so far. I would appreciate any help.

import seaborn as sns
from random import randrange

y = [randrange(100) for i in range(50)]
x = [i for i in range(50)]
ax = sns.scatterplot(x=x, y=y, s=15, c=y, palette=sns.color_palette("YlOrBr", as_cmap=True))

enter image description here

Sinuate answered 6/7, 2021 at 8:41 Comment(0)
P
9

palette is tied to hue, so change c to hue:

ax = sns.scatterplot(x=x, y=y, s=15, hue=y, palette="YlOrBr", legend=False)

enter image description here

Packer answered 6/7, 2021 at 8:48 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.