diff --git a/fluents/plots.py b/fluents/plots.py index e7beedc..617a1f8 100644 --- a/fluents/plots.py +++ b/fluents/plots.py @@ -581,11 +581,6 @@ class HistogramPlot(Plot): self.axes.grid(False) bins = min(self._data.size, kw['bins']) count, lims, self.patches = self.axes.hist(self._data, bins=bins) - print "Number of pathes: %s" %len(self.patches) - print "Counts: " - print count - print "Lims:" - print lims # Add identifiers to the individual patches if self.current_dim != None: for i, patch in enumerate(self.patches): @@ -596,8 +591,6 @@ class HistogramPlot(Plot): bool_ind = scipy.bitwise_and(self._data>=lims[i], self._data<=end_lim) patch.index = scipy.where(bool_ind)[0] - print "Patch index: " - print (i, patch.index, count[i]) if self.current_dim==None: # Disable selection modes