Skip to content
This repository has been archived by the owner on Jan 2, 2018. It is now read-only.

Commit

Permalink
single: add text
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksa Sarai <[email protected]>
  • Loading branch information
cyphar committed Oct 28, 2016
1 parent e84b92f commit a455d59
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/single.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,12 @@ def main(config):
ax1.set_ylabel(r"Amplitude ($|b|$)")
ax1.set_xlim([t0, t1])

# ax1.text(t0 + 4, 1e10, "linear", size=12, ha='left', va='top')
# ax1.text(t1 - 3, 1e10, "non-linear", size=12, ha='right', va='top')
# if ax2 is not None:
# ax2.text(t0 + 4, 1e10, "linear", size=12, ha='left', va='top')
# ax2.text(t1 - 3, 1e10, "non-linear", size=12, ha='right', va='top')

if config.scale == "log":
ax1.set_ylim([None, 1e11])
elif config.scale == "linear":
Expand Down

0 comments on commit a455d59

Please sign in to comment.