Syntax error What is the name of the default Seaborn color palette?

What is the name of the default Seaborn color palette?



To get the default Seaborn color palette, we can take the following steps

  • Set the figure size and adjust the padding between and around the subplots.
  • Return a list of colors or continuous colormap defining a palette.
  • Plot the values in a color palette as a horizontal array.
  • To display the figure, use show() method.

Example

import seaborn as sns
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
current_palette = sns.color_palette()
sns.palplot(current_palette)
plt.show()

Output

Updated on: 2021-06-02T08:29:38+05:30

330 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements