forked from dcorreab/ads14
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmatplotlibrc
More file actions
50 lines (36 loc) · 1.33 KB
/
matplotlibrc
File metadata and controls
50 lines (36 loc) · 1.33 KB
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
## Greg Dobler
## CUSP Applied Data Science 2014
## Example matplotlibrc file (which should be located in the .matplotlib/
## folder in your home directory)
# -------- set the display backend
backend : MacOSX
# -------- set the default color map to gray
# -------- don't interpolate when displaying images
image.cmap : gist_gray
image.interpolation : nearest # set image display interpolation
# -------- rectangular figures by default
# -------- white canvas background
# -------- set the location of axes on the canvas
figure.figsize : 10,5
figure.facecolor : w
figure.subplot.bottom : 0.125
figure.subplot.left : 0.1
# -------- set default color cycle for plotting lines
# -------- turn on the grid by default
# -------- set the axis background color to gray
# -------- put axis lines (e.g., grid lines) behind plotted lines
# -------- turn off bounding axis lines
axes.color_cycle : E24A33, 8EBA42, 348ABD, 988ED5, 777777, FBC15E, FFB5B8
axes.grid : True
axes.facecolor : EEEEEE
axes.axisbelow : True
axes.linewidth : 0
# -------- make grid white dashed lines with thickness 1.5
grid.color : white
grid.linewidth : 1.5
grid.linestyle : -
# -------- point the ticks outwards
xtick.direction : out
ytick.direction : out
# -------- make the default line width when plotting twice as thick
lines.linewidth : 2