Skip to content
Snippets Groups Projects
Commit 9cb7c9f0 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Adds title to twoFcumulative plot

parent 0fabad94
No related tags found
No related merge requests found
...@@ -427,7 +427,7 @@ class ComputeFstat(object): ...@@ -427,7 +427,7 @@ class ComputeFstat(object):
return taus, np.array(twoFs) return taus, np.array(twoFs)
def plot_twoF_cumulative(self, label, outdir, ax=None, c='k', savefig=True, def plot_twoF_cumulative(self, label, outdir, ax=None, c='k', savefig=True,
**kwargs): title=None, **kwargs):
taus, twoFs = self.calculate_twoF_cumulative(**kwargs) taus, twoFs = self.calculate_twoF_cumulative(**kwargs)
if ax is None: if ax is None:
fig, ax = plt.subplots() fig, ax = plt.subplots()
...@@ -436,6 +436,7 @@ class ComputeFstat(object): ...@@ -436,6 +436,7 @@ class ComputeFstat(object):
kwargs['tstart'])) kwargs['tstart']))
ax.set_ylabel(r'$\widetilde{2\mathcal{F}}_{\rm cumulative}$') ax.set_ylabel(r'$\widetilde{2\mathcal{F}}_{\rm cumulative}$')
ax.set_xlim(0, taus[-1]/86400) ax.set_xlim(0, taus[-1]/86400)
ax.set_title(title)
if savefig: if savefig:
plt.savefig('{}/{}_twoFcumulative.png'.format(outdir, label)) plt.savefig('{}/{}_twoFcumulative.png'.format(outdir, label))
else: else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment