Skip to content

Commit fdfbd7e

Browse files
author
stephenmwilkins
committed
added plotting routines
1 parent 942606e commit fdfbd7e

File tree

5 files changed

+171
-0
lines changed

5 files changed

+171
-0
lines changed

__pycache__/plt.cpython-37.pyc

1.64 KB
Binary file not shown.

examples/density.pdf

23.9 KB
Binary file not shown.

examples/plot_test.py

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
2+
import matplotlib as mpl
3+
import matplotlib.pyplot as plt
4+
import matplotlib.cm as cm
5+
import numpy as np
6+
7+
import sys
8+
import os
9+
10+
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '../../')))
11+
12+
import flares.plt as fplt
13+
14+
15+
# ------------------------------ redshift evolution plot
16+
17+
fig, ax = fplt.single()
18+
19+
x = np.array([7,12])
20+
21+
redshifts = np.array([5,6,7,8,9,10])
22+
23+
norm = mpl.colors.Normalize(vmin=redshifts.min(), vmax=redshifts.max()+1) # +1 gets rid of the yellow colour
24+
25+
for z, m in zip(redshifts, np.linspace(0.25,1.0,len(redshifts))):
26+
ax.plot(x, (x-7)*m+27.5+m, c=cm.plasma(norm(z)), lw=1, label=rf'$z={z}$')
27+
28+
ax.set_ylim([27, 32])
29+
ax.set_xlim([7, 12])
30+
31+
ax.set_ylabel(r'$\log_{10}(L_{\nu}/{\rm erg\ s^{-1}\ Hz^{-1})}$')
32+
ax.set_xlabel(r'$\log_{10}(M_{\star}/{\rm M_{\odot}})$')
33+
34+
ax.grid(True)
35+
ax.legend()
36+
37+
fig.savefig('redshift.pdf')
38+
39+
40+
41+
42+
43+
44+
# ------------------------------ density dependence plot
45+
46+
fig, ax = fplt.single()
47+
48+
# --- line, fill_between
49+
50+
x = np.array([7,12])
51+
y = np.array([28.5,31.5])
52+
53+
ax.fill_between(x,y-0.2,y+0.2, color='k', alpha=0.2)
54+
ax.plot(x,y, c='k', lw=2, label='weighted total')
55+
56+
# ---
57+
58+
densities = np.linspace(-0.5,0.5,5)
59+
norm = mpl.colors.Normalize(vmin=densities.min(), vmax=densities.max())
60+
61+
for density in densities:
62+
ax.plot(x,y+density*2+0.1, c=cm.viridis(norm(density)), lw = 1, label = rf'$\log_{{10}}(1+\delta)\in [{density}]$')
63+
64+
65+
ax.set_ylim([27, 32])
66+
ax.set_xlim([7, 12])
67+
68+
ax.set_ylabel(r'$\log_{10}(L_{\nu}/{\rm erg\ s^{-1}\ Hz^{-1})}$')
69+
ax.set_xlabel(r'$\log_{10}(M_{\star}/{\rm M_{\odot}})$')
70+
71+
ax.grid(True)
72+
73+
ax.legend()
74+
75+
fig.savefig('density.pdf')
76+
77+
78+
79+
80+
81+
82+
83+
#
84+
# # --- scatter1
85+
#
86+
# N = 50
87+
# x = 8 + np.random.randn(N)/5
88+
# y = 30 + np.random.randn(N)/5
89+
# z = x**2 + y**2
90+
#
91+
# ax.scatter(x,y,c=z,cmap=cm.plasma,s=10)

examples/redshift.pdf

20.7 KB
Binary file not shown.

plt.py

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
2+
import matplotlib as mpl
3+
import matplotlib.pyplot as plt
4+
import matplotlib.cm as cm
5+
import numpy as np
6+
7+
fancy = lambda x: r'$\rm '+x.replace(' ','\ ')+'$'
8+
ml = lambda x: r'$\rm '+x+'$'
9+
10+
rcParams = {}
11+
rcParams['savefig.dpi'] = 300
12+
rcParams['path.simplify'] = True
13+
14+
rcParams['font.family'] = 'sans-serif'
15+
rcParams['font.sans-serif'] = 'stixsans'
16+
rcParams['text.usetex'] = False
17+
rcParams['font.size'] = 9
18+
rcParams['mathtext.fontset'] = 'stixsans'
19+
20+
rcParams['axes.linewidth'] = 0.5
21+
22+
rcParams['xtick.major.size'] = 3
23+
rcParams['ytick.major.size'] = 3
24+
rcParams['xtick.minor.size'] = 1.5
25+
rcParams['ytick.minor.size'] = 1.5
26+
rcParams['xtick.labelsize'] = 8
27+
rcParams['ytick.labelsize'] = 8
28+
rcParams['ytick.direction'] = 'in'
29+
rcParams['xtick.direction'] = 'in'
30+
rcParams['ytick.minor.visible'] = True
31+
rcParams['xtick.minor.visible'] = True
32+
rcParams['xtick.major.width'] = 0.25
33+
rcParams['ytick.major.width'] = 0.25
34+
rcParams['xtick.minor.width'] = 0.25
35+
rcParams['ytick.minor.width'] = 0.25
36+
37+
rcParams['grid.alpha'] = 0.1
38+
rcParams['grid.color'] = 'k'
39+
rcParams['grid.linestyle'] = '-'
40+
rcParams['grid.linewidth'] = 0.8
41+
42+
43+
# --- legend
44+
45+
# legend.borderaxespad: 0.5
46+
# legend.borderpad: 0.4
47+
# legend.columnspacing: 2.0
48+
# legend.edgecolor: 0.8
49+
# legend.facecolor: inherit
50+
rcParams['legend.fancybox'] = False
51+
rcParams['legend.fontsize'] = 8
52+
# legend.framealpha: 0.8
53+
rcParams['legend.frameon'] = False
54+
# legend.handleheight: 0.7
55+
# legend.handlelength: 2.0
56+
# legend.handletextpad: 0.8
57+
# legend.labelspacing: 0.5
58+
# legend.loc: best
59+
# legend.markerscale: 1.0
60+
# legend.numpoints: 1
61+
# legend.scatterpoints: 1
62+
# legend.shadow: False
63+
# legend.title_fontsize: None
64+
65+
66+
mpl.rcParams.update(rcParams)
67+
68+
69+
def single():
70+
71+
fig = plt.figure(figsize = (3.5, 3.5))
72+
73+
left = 0.15
74+
height = 0.8
75+
bottom = 0.15
76+
width = 0.8
77+
78+
ax = fig.add_axes((left, bottom, width, height))
79+
80+
return fig, ax

0 commit comments

Comments
 (0)