In [ ]:
import Match
import os
%matplotlib inline
In [ ]:
reload(Match)
In [ ]:
s = Match.Serie("LR04core")
s.report()
In [ ]:
s.plot()
In [ ]:
s = Match.Serie("LR04core")
s.setLimits(1000, 3000).plot()
In [ ]:
s.setLimits(1000,3000, True).plot()
In [ ]:
s = Match.Serie("LR04core")
s.setLimits(1000, 3000).plot()
In [ ]:
s.normalize(True).plot()
In [ ]:
s.normalize(False).plot()
In [ ]:
s.normalize(False, s.normalizeStd()).plot()
In [ ]:
s.normalizeStd(True).plot()
In [ ]:
s.normalizeStd(False).plot()
In [ ]:
s.setLimits(1000, 3000, True).plot()
In [ ]:
s.setTie("A", 1250).setTie("B", 2250).plot()
In [ ]:
s.save()
In [ ]:
s.saveas("teste.dat")
In [ ]:
os.unlink("teste.dat")