-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplotting.mplstyle
49 lines (39 loc) · 1000 Bytes
/
plotting.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
# To check more avaialble options see:
# https://matplotlib.org/tutorials/introductory/customizing.html
text.color : (0,0,0)
# AXES
axes.titlesize : 22
axes.labelsize : 22
axes.edgecolor : (0,0,0) #Normalized RGB colours (from 0 to 1 instead of 0 to 255)
axes.labelcolor : (0,0,0)
axes.linewidth : 1
axes.spines.top : False
axes.spines.right : False
axes.spines.bottom : True
axes.spines.left : True
# LEGEND
legend.fancybox : True
legend.fontsize : 13
legend.title_fontsize: 16
# GRID
axes.grid : True
grid.alpha : 0.7
grid.linestyle : --
grid.linewidth : 0.6
# LINES
axes.prop_cycle : cycler('color', ["332288", "117733", "44AA99", "88CCEE", "DDCC77", "CC6677", "AA4499", "882255"]) #hex colours
lines.linewidth : 2
lines.markeredgewidth : 0.0
# SCATTER PLOT
scatter.marker : .
# TICKS
xtick.labelsize : 16
xtick.color : (0,0,0)
xtick.direction : in
ytick.labelsize : 16
ytick.color : (0,0,0)
ytick.direction : in
# FIGURE OUTPUT
figure.figsize : 7, 5
figure.dpi : 150
savefig.dpi : 275