-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmatplotlibrc
More file actions
39 lines (33 loc) · 797 Bytes
/
matplotlibrc
File metadata and controls
39 lines (33 loc) · 797 Bytes
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
text.color : (0.2,0.2,0.2)
# AXES
axes.titlesize : 16
axes.labelsize : 12
axes.edgecolor : (0.1,0.1,0.1) # Normalized RGB colours (from 0 to 1 instead of 0 to 255)
axes.labelcolor : (0.1,0.1,0.1)
axes.linewidth : 1
axes.spines.top : False
axes.spines.right : False
axes.spines.bottom : True
axes.spines.left : True
# GRID
axes.grid : True
grid.alpha : 0.7
grid.linestyle : --
grid.linewidth : 0.6
# LINES
axes.prop_cycle : cycler('color', [ '10A37F', '147960','024736']) # hex colours
lines.linewidth : 1.5
lines.markeredgewidth : 0.0
# SCATTER PLOT
scatter.marker : x
# TICKS
xtick.labelsize : 10
xtick.color : (0.1,0.1,0.1)
xtick.direction : in
ytick.labelsize : 10
ytick.color : (0.1,0.1,0.1)
ytick.direction : in
# FIGURE OUTPUT
figure.figsize : 10, 6
figure.dpi : 200
savefig.dpi : 200