From 3cee0e6df945272cbe00cb8e5be47aad9b3e345d Mon Sep 17 00:00:00 2001 From: Sebastianw Wehling-Benatelli Date: Mon, 13 Jun 2016 14:23:42 +0200 Subject: [PATCH] [change] added plots for debugging --- pylot/core/pick/compare.py | 3 +++ pylot/core/util/widgets.py | 23 +++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/pylot/core/pick/compare.py b/pylot/core/pick/compare.py index 2718a39f..b39f8ef8 100644 --- a/pylot/core/pick/compare.py +++ b/pylot/core/pick/compare.py @@ -223,6 +223,9 @@ class PDFDictionary(object): else: return True + def __getitem__(self, item): + return self.pdf_data[item] + @property def pdf_data(self): return self._pdfdata diff --git a/pylot/core/util/widgets.py b/pylot/core/util/widgets.py index 71e668b6..5548746b 100644 --- a/pylot/core/util/widgets.py +++ b/pylot/core/util/widgets.py @@ -203,7 +203,14 @@ class ComparisonDialog(QDialog): self.plotcomparison() def plotcomparison(self): + from matplotlib import gridspec _axes = self.canvas.figure.add_subplot(111) + + _gs = gridspec.GridSpec(3, 2) + _axes = self.canvas.figure.add_subplot(_gs[0:2, :]) + _ax1 = self.canvas.figure.add_subplot(_gs[2, 0]) + _ax2 = self.canvas.figure.add_subplot(_gs[2, 1]) + _axes.cla() station = self.plotprops['station'] phase = self.plotprops['phase'] @@ -222,6 +229,22 @@ class ComparisonDialog(QDialog): 'fraction') bbox_props = dict(boxstyle='round', facecolor='lightgrey', alpha=.7) _anno.set_bbox(bbox_props) + + pdf_a = self.data.get('auto')[station][phase] + pdf_m = self.data.get('manu')[station][phase] + xauto, yauto, stdauto, expauto = pdf_a.axis, pdf_a.data, \ + pdf_a.standard_deviation(), \ + pdf_a.expectation() + xmanu, ymanu, stdmanu, expmanu = pdf_m.axis, pdf_m.data, \ + pdf_m.standard_deviation(), \ + pdf_m.expectation() + + _ax1.plot(xauto, yauto) + + _ax2.plot(xmanu, ymanu) + + _gs.update(wspace=0.5, hspace=0.5) + self.canvas.draw() def plothist(self):