forked from alexeykiselev/BlockGenerationModel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
elegant.mplstyle
63 lines (52 loc) · 1.45 KB
/
elegant.mplstyle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Elegant SciPy Matplotlib Style
# Author: Juan Nunez-Iglesias
lines.linewidth: 1.5
lines.markersize: 4
# Use the Seaborn Colorblind palette for color cycles
axes.prop_cycle: cycler('color', ['0072b2', '009e73', 'd55e00', 'cc79a7', 'f0e442', '56b4e9', '0072b2'])
# Remove the right and top axis spines
axes.spines.left: true
axes.spines.bottom: true
axes.spines.top: false
axes.spines.right: false
# Use small font for axis labels
axes.labelsize: small
# Use thicker axes
axes.linewidth: 1.1
# Remove ticks
xtick.major.size: 0
xtick.minor.size: 0
xtick.labelsize: small
ytick.major.size: 0
ytick.minor.size: 0
ytick.labelsize: small
# Remove grids
grid.linewidth: 0
# Remove box around legend
# Use 3 scatter points in points legend
# Use small font in legend
legend.frameon: false
legend.scatterpoints: 3
legend.fontsize: small
figure.facecolor: 1.0
figure.autolayout: false
# O'Reilly figure width, maintaining 4:3 aspect ratio
figure.figsize: 4.8, 3.6
figure.dpi: 300
savefig.dpi: 300
image.interpolation: nearest
image.cmap: gray
image.resample: false
# Box plots
boxplot.flierprops.marker: .
boxplot.flierprops.markerfacecolor: 0072b2
boxplot.flierprops.markeredgecolor: 0072b2
boxplot.flierprops.markersize: 2
boxplot.boxprops.color: 0072b2
boxplot.boxprops.linewidth: 1
boxplot.whiskerprops.linestyle: -
boxplot.whiskerprops.color: 0072b2
boxplot.whiskerprops.linewidth: 1
boxplot.capprops.linewidth: 0
boxplot.medianprops.linewidth: 1
boxplot.medianprops.color: d55e00