Answers for "how do i change the hue color in seaborn"

0

how do i change the hue color in seaborn

palette=['tab:blue', 'tab:green', 'tab:orange', 'tab:red']

Example: 
sns.scatterplot( data=df,
                x="perm",
                y="perm',
                hue="perm",
                palette=['tab:blue', 'tab:green', 'tab:orange', 'tab:red'] )
Posted by: Guest on March-22-2022

Code answers related to "how do i change the hue color in seaborn"

Python Answers by Framework

Browse Popular Code Answers by Language