Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork8.1k
Update seaborn style#13680
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Closed
Uh oh!
There was an error while loading.Please reload this page.
Closed
Update seaborn style#13680
Changes fromall commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
8 changes: 8 additions & 0 deletionsdoc/api/next_api_changes/2019-03-17-TH-seaborn-style.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| API changes | ||
| ``````````` | ||
| The the style changes introduced in seaborn 0.9 have been included in the | ||
| Matplotlib seaborn styles. | ||
| Most notably, the color palettes have been extended from 6 to 10 colors. | ||
| The former 6-color palettes are still available via a '6' suffix in the | ||
| style name, e.g. ``plt.style.use('seaborn-bright6')``. |
6 changes: 3 additions & 3 deletionslib/matplotlib/mpl-data/stylelib/seaborn-bright.mplstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| #seaborn bright palette | ||
| axes.prop_cycle: cycler('color', ['023EFF', 'FF7C00', '1AC938', 'E8000B', '8B2BE2', '9F4800', 'F14CC1', 'A3A3A3', 'FFC400', '00D7FF']) | ||
| patch.facecolor:023EFF |
3 changes: 3 additions & 0 deletionslib/matplotlib/mpl-data/stylelib/seaborn-bright6.mplstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # seaborn bright6 palette | ||
| axes.prop_cycle: cycler('color', ['023EFF', '1AC938', 'E8000B', '8B2BE2', 'FFC400', '00D7FF']) | ||
| patch.facecolor: 023EFF |
6 changes: 3 additions & 3 deletionslib/matplotlib/mpl-data/stylelib/seaborn-colorblind.mplstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| #seaborn colorblind palette | ||
| axes.prop_cycle: cycler('color', ['0173B2', 'DE8F05', '029E73', 'D55E00', 'CC78BC', 'CA9161', 'FBAFE4', '949494', 'ECE133', '56B4E9']) | ||
| patch.facecolor:0173B2 |
3 changes: 3 additions & 0 deletionslib/matplotlib/mpl-data/stylelib/seaborn-colorblind6.mplstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # seaborn colorblind6 palette | ||
| axes.prop_cycle: cycler('color', ['0173B2', '029E73', 'D55E00', 'CC78BC', 'ECE133', '56B4E9']) | ||
| patch.facecolor: 0173B2 |
4 changes: 2 additions & 2 deletionslib/matplotlib/mpl-data/stylelib/seaborn-dark-palette.mplstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| #seaborn dark palette | ||
| axes.prop_cycle: cycler('color', ['001C7F', 'B1400D', '12711C', '8C0800', '591E71', '592F0D', 'A23582', '3C3C3C', 'B8850A', '006374']) | ||
| patch.facecolor: 001C7F |
43 changes: 27 additions & 16 deletionslib/matplotlib/mpl-data/stylelib/seaborn-dark.mplstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,30 +1,41 @@ | ||
| #seaborn dark style | ||
| #common parameters (see style_dict in seaborn.rcmod.axes_style()): | ||
| figure.facecolor: white | ||
| axes.labelcolor: .15 | ||
| xtick.direction: out | ||
| ytick.direction: out | ||
| xtick.color: .15 | ||
| ytick.color: .15 | ||
| axes.axisbelow: True | ||
| grid.linestyle: - | ||
| text.color: .15 | ||
| font.family: sans-serif | ||
| font.sans-serif: Arial, DejaVu Sans, Liberation Sans, Bitstream Vera Sans, sans-serif | ||
| lines.solid_capstyle: round | ||
| patch.edgecolor: w | ||
| patch.force_edgecolor: True | ||
| # seaborn image.cmap is "rocket", but we do not have that | ||
| image.cmap: Greys | ||
| xtick.top: False | ||
| ytick.right: False | ||
| # dark parameters | ||
| axes.grid: False | ||
| axes.facecolor: EAEAF2 | ||
| axes.edgecolor: white | ||
| grid.color: white | ||
| axes.spines.left: True | ||
| axes.spines.bottom: True | ||
| axes.spines.right: True | ||
| axes.spines.top: True | ||
| xtick.bottom: False | ||
| ytick.left: False |
3 changes: 3 additions & 0 deletionslib/matplotlib/mpl-data/stylelib/seaborn-dark6-palette.mplstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # seaborn dark6 palette | ||
| axes.prop_cycle: cycler('color', ['001C7F', '12711C', '8C0800', '591E71', 'B8850A', '006374']) | ||
| patch.facecolor: 001C7F |
43 changes: 27 additions & 16 deletionslib/matplotlib/mpl-data/stylelib/seaborn-darkgrid.mplstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,30 +1,41 @@ | ||
| #seaborn darkgrid style | ||
| #common parameters (see style_dict in seaborn.rcmod.axes_style()): | ||
| figure.facecolor: white | ||
| axes.labelcolor: .15 | ||
| xtick.direction: out | ||
| ytick.direction: out | ||
| xtick.color: .15 | ||
| ytick.color: .15 | ||
| axes.axisbelow: True | ||
| grid.linestyle: - | ||
| text.color: .15 | ||
| font.family: sans-serif | ||
| font.sans-serif: Arial, DejaVu Sans, Liberation Sans, Bitstream Vera Sans, sans-serif | ||
| lines.solid_capstyle: round | ||
| patch.edgecolor: w | ||
| patch.force_edgecolor: True | ||
| # seaborn image.cmap is "rocket", but we do not have that | ||
| image.cmap: Greys | ||
| xtick.top: False | ||
| ytick.right: False | ||
| # darkgrid parameters | ||
| axes.grid: True | ||
| axes.facecolor: EAEAF2 | ||
| axes.edgecolor: white | ||
| grid.color: white | ||
| axes.spines.left: True | ||
| axes.spines.bottom: True | ||
| axes.spines.right: True | ||
| axes.spines.top: True | ||
| xtick.bottom: False | ||
| ytick.left: False |
4 changes: 2 additions & 2 deletionslib/matplotlib/mpl-data/stylelib/seaborn-deep.mplstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| #seaborn deep palette | ||
| axes.prop_cycle: cycler('color', ['4C72B0', 'DD8452', '55A868', 'C44E52', '8172B3', '937860', 'DA8BC3', '8C8C8C', 'CCB974', '64B5CD']) | ||
| patch.facecolor: 4C72B0 |
3 changes: 3 additions & 0 deletionslib/matplotlib/mpl-data/stylelib/seaborn-deep6.mplstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # seaborn deep6 palette | ||
| axes.prop_cycle: cycler('color', ['4C72B0', '55A868', 'C44E52', '8172B3', 'CCB974', '64B5CD']) | ||
| patch.facecolor: 4C72B0 |
6 changes: 3 additions & 3 deletionslib/matplotlib/mpl-data/stylelib/seaborn-muted.mplstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| #seaborn muted palette | ||
| axes.prop_cycle: cycler('color', ['4878D0', 'EE854A', '6ACC64', 'D65F5F', '956CB4', '8C613C', 'DC7EC0', '797979', 'D5BB67', '82C6E2']) | ||
| patch.facecolor:4878D0 |
3 changes: 3 additions & 0 deletionslib/matplotlib/mpl-data/stylelib/seaborn-muted6.mplstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # seaborn muted6 palette | ||
| axes.prop_cycle: cycler('color', ['4878D0', '6ACC64', 'D65F5F', '956CB4', 'D5BB67', '82C6E2']) | ||
| patch.facecolor: 4878D0 |
35 changes: 19 additions & 16 deletionslib/matplotlib/mpl-data/stylelib/seaborn-notebook.mplstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,21 +1,24 @@ | ||
| # seaborn notebook context | ||
| # see seaborn.rcmod.plotting_context() | ||
| font.size: 12 | ||
| axes.labelsize: 12 | ||
| axes.titlesize: 12 | ||
| xtick.labelsize:11 | ||
| ytick.labelsize:11 | ||
| legend.fontsize:11 | ||
| axes.linewidth: 1.25 | ||
| grid.linewidth: 1 | ||
| lines.linewidth: 1.5 | ||
| lines.markersize: 6 | ||
| patch.linewidth: 1 | ||
| xtick.major.width: 1.25 | ||
| ytick.major.width: 1.25 | ||
| xtick.minor.width:1 | ||
| ytick.minor.width:1 | ||
| xtick.major.size: 6 | ||
| ytick.major.size: 6 | ||
| xtick.minor.size: 4 | ||
| ytick.minor.size: 4 |
35 changes: 19 additions & 16 deletionslib/matplotlib/mpl-data/stylelib/seaborn-paper.mplstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,21 +1,24 @@ | ||
| # seaborn paper context | ||
| # see seaborn.rcmod.plotting_context() | ||
| font.size: 9.6 | ||
| axes.labelsize: 9.6 | ||
| axes.titlesize: 9.6 | ||
| xtick.labelsize: 8.8 | ||
| ytick.labelsize: 8.8 | ||
| legend.fontsize: 8.8 | ||
| axes.linewidth: 1 | ||
| grid.linewidth: 0.8 | ||
| lines.linewidth: 1.2 | ||
| lines.markersize: 4.8 | ||
| patch.linewidth: 0.8 | ||
| xtick.major.width:1 | ||
| ytick.major.width:1 | ||
| xtick.minor.width: 0.8 | ||
| ytick.minor.width: 0.8 | ||
| xtick.major.size: 4.8 | ||
| ytick.major.size: 4.8 | ||
| xtick.minor.size: 3.2 | ||
| ytick.minor.size: 3.2 |
6 changes: 3 additions & 3 deletionslib/matplotlib/mpl-data/stylelib/seaborn-pastel.mplstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| #seaborn pastel palette | ||
| axes.prop_cycle: cycler('color', ['A1C9F4', 'FFB482', '8DE5A1', 'FF9F9B', 'D0BBFF', 'DEBB9B', 'FAB0E4', 'CFCFCF', 'FFFEA3', 'B9F2F0']) | ||
| patch.facecolor:A1C9F4 |
3 changes: 3 additions & 0 deletionslib/matplotlib/mpl-data/stylelib/seaborn-pastel6.mplstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # seaborn pastel6 palette | ||
| axes.prop_cycle: cycler('color', ['A1C9F4', '8DE5A1', 'FF9F9B', 'D0BBFF', 'FFFEA3', 'B9F2F0']) | ||
| patch.facecolor: A1C9F4 |
39 changes: 21 additions & 18 deletionslib/matplotlib/mpl-data/stylelib/seaborn-poster.mplstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,21 +1,24 @@ | ||
| # seaborn poster context | ||
| # see seaborn.rcmod.plotting_context() | ||
| font.size: 24 | ||
| axes.labelsize: 24 | ||
| axes.titlesize: 24 | ||
| xtick.labelsize: 22 | ||
| ytick.labelsize: 22 | ||
| legend.fontsize: 22 | ||
| axes.linewidth:2.5 | ||
| grid.linewidth: 2 | ||
| lines.linewidth:3 | ||
| lines.markersize:12 | ||
| patch.linewidth: 2 | ||
| xtick.major.width:2.5 | ||
| ytick.major.width:2.5 | ||
| xtick.minor.width:2 | ||
| ytick.minor.width:2 | ||
| xtick.major.size: 12 | ||
| ytick.major.size: 12 | ||
| xtick.minor.size: 8 | ||
| ytick.minor.size: 8 |
39 changes: 21 additions & 18 deletionslib/matplotlib/mpl-data/stylelib/seaborn-talk.mplstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,21 +1,24 @@ | ||
| # seaborn talk context | ||
| # see seaborn.rcmod.plotting_context() | ||
| font.size: 18 | ||
| axes.labelsize: 18 | ||
| axes.titlesize: 18 | ||
| xtick.labelsize: 16.5 | ||
| ytick.labelsize: 16.5 | ||
| legend.fontsize: 16.5 | ||
| axes.linewidth: 1.875 | ||
| grid.linewidth:1.5 | ||
| lines.linewidth:2.25 | ||
| lines.markersize: 9 | ||
| patch.linewidth: 1.5 | ||
| xtick.major.width: 1.875 | ||
| ytick.major.width: 1.875 | ||
| xtick.minor.width:1.5 | ||
| ytick.minor.width:1.5 | ||
| xtick.major.size: 9 | ||
| ytick.major.size: 9 | ||
| xtick.minor.size: 6 | ||
| ytick.minor.size: 6 |
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.