Skip to content

Commit a3f93c0

Browse files
author
stephanie
committed
debug statement for histogram issue
1 parent 611900d commit a3f93c0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

odmtools/gui/plotHistogram.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ def _createPlot(self, oneSeries, rows, cols, index):
9999
ax = self.figure.add_subplot(repr(rows) + repr(cols) + repr(index))
100100

101101
logger.debug("HISTOGRAM: %s"% ax)
102+
logger.debut("rows: %s cols: %s, index: %s"%(rows, cols, index))
102103

103104
# oneSeries.filteredData.hist(ax= ax, color='k', alpha=0.5, bins=50)
104105

odmtools/gui/pnlPlot.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,11 +164,12 @@ def redrawPlots(self):
164164
logger.debug("Plot Boxwhisker")
165165
self.pltBox.Plot(self._seriesPlotInfo)
166166

167+
logger.debug("Plot Timeseries")
168+
self.pltTS.Plot(self._seriesPlotInfo)
169+
167170
logger.debug("Plot Histogram")
168171
self.pltHist.Plot(self._seriesPlotInfo)
169172

170-
logger.debug("Plot Timeseries")
171-
self.pltTS.Plot(self._seriesPlotInfo)
172173

173174
self.onShowLegend(event=None, isVisible=self.legendVisible)
174175
maxStart, maxEnd, currStart, currEnd = self._seriesPlotInfo.getDates()

0 commit comments

Comments
 (0)