matplotlib available styles

Solutions on MaxInterview for matplotlib available styles by the best coders in the world

showing results for - "matplotlib available styles"
Sophie
04 Mar 2018
1We can see all the available styles by accessing the style.available attribute.
2
3#style.use('default') between each change — 
4#some of the styles can interfere with one another.
5style.use('default')
6
7style.available
8
9['Solarize_Light2',
10 '_classic_test_patch',
11 'bmh',
12 'classic',
13 'dark_background',
14 'fast',
15 'fivethirtyeight',
16 'ggplot',
17 'grayscale',
18 'seaborn',
19 'seaborn-bright',
20 'seaborn-colorblind',
21 'seaborn-dark',
22 'seaborn-dark-palette',
23 'seaborn-darkgrid',
24 'seaborn-deep',
25 'seaborn-muted',
26 'seaborn-notebook',
27 'seaborn-paper',
28 'seaborn-pastel',
29 'seaborn-poster',
30 'seaborn-talk',
31 'seaborn-ticks',
32 'seaborn-white',
33 'seaborn-whitegrid',
34 'tableau-colorblind10']
35