Commit 62c54702 by Craig Heffner

Removed graph titling from entropy plots

parent 9f6e550c
......@@ -27,7 +27,7 @@ class Entropy(Module):
DEFAULT_TRIGGER_HIGH = .95
DEFAULT_TRIGGER_LOW = .85
TITLE = "Entropy Analysis"
TITLE = ""
ORDER = 8
# TODO: Add --dpoints option to set the number of data points?
......@@ -270,7 +270,7 @@ class Entropy(Module):
except AttributeError:
ax = fig.add_subplot(1, 1, 1, autoscale_on=True, axisbg='black')
ax.set_title(fname)
ax.set_title(self.TITLE)
ax.set_xlabel(self.XLABEL)
ax.set_ylabel(self.YLABEL)
ax.plot(x, y, 'y', lw=2)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment