Skip to content
Snippets Groups Projects
Commit 1d31110d authored by Kipp Cannon's avatar Kipp Cannon
Browse files

plot_horizon_distance_vs_time(): fix labels

- latex barfed on "D_H" in y axis label
- tweak title while at it.
- refs #2505
parent 3748b41e
No related branches found
No related tags found
No related merge requests found
......@@ -324,9 +324,9 @@ def plot_horizon_distance_vs_time(coinc_param_distributions, (tlo,thi), tbins, c
yhi = max(y.max()+5., yhi)
axes.set_ylim((0,yhi))
axes.set_xlim((round(tlo), round(thi)))
axes.set_ylabel('D_H (Mpc)')
axes.set_ylabel('Horizon Distance (Mpc)')
axes.set_xlabel('GPS Time (s)')
axes.set_title('Horizon Distance')
axes.set_title('Horizon Distance vs.\ Time')
axes.legend(loc = "lower left")
#FIXME: remove when we have a new enough matplotlib on all the reference platforms
try:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment