Colors
It is essential to choose the right color for the plot. If your plot looks good, it will be easy to study it.
Note
If you work with different categories - change colors.
If you work with different values - change colors for them.
Pay attention!
These 2 variants of setting the palette show different color results:
- If you put the palette name with the
.set_palette
function, the colors will be changed for the plot elements; - If you put the palette as an argument in the plot function, colors will be used for the hue variable.
# 1st case
sns.set_palette('mako')
sns.countplot(...)
# 2nd case
sns.countplot(..., palette = 'mako')
To change the brightness and saturation, you can use these default styles:
To visualize the numeric values, we can use perceptually uniform palettes.
Some more palettes!
Here are presented some more matplotlib
colors. You can use them if you're going to set one color for plot elements or customize the plot.
Swipe to start coding
Try to set the palette!
Set the 'mako'
palette for the countplot
.
Solución
¡Gracias por tus comentarios!
single
Pregunte a AI
Pregunte a AI
Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla
Resumir este capítulo
Explicar el código en file
Explicar por qué file no resuelve la tarea
Awesome!
Completion rate improved to 4.35
Colors
Desliza para mostrar el menú
It is essential to choose the right color for the plot. If your plot looks good, it will be easy to study it.
Note
If you work with different categories - change colors.
If you work with different values - change colors for them.
Pay attention!
These 2 variants of setting the palette show different color results:
- If you put the palette name with the
.set_palette
function, the colors will be changed for the plot elements; - If you put the palette as an argument in the plot function, colors will be used for the hue variable.
# 1st case
sns.set_palette('mako')
sns.countplot(...)
# 2nd case
sns.countplot(..., palette = 'mako')
To change the brightness and saturation, you can use these default styles:
To visualize the numeric values, we can use perceptually uniform palettes.
Some more palettes!
Here are presented some more matplotlib
colors. You can use them if you're going to set one color for plot elements or customize the plot.
Swipe to start coding
Try to set the palette!
Set the 'mako'
palette for the countplot
.
Solución
¡Gracias por tus comentarios!
Awesome!
Completion rate improved to 4.35single