From 0ec4609cbb1a10b10b5aadd693c1e6033c42be18 Mon Sep 17 00:00:00 2001 From: Gabriel Studer <gabriel.studer@stud.unibas.ch> Date: Wed, 19 Sep 2012 11:03:11 +0200 Subject: [PATCH] removed debug output --- modules/base/pymod/table.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/base/pymod/table.py b/modules/base/pymod/table.py index 10d85d1ff..8ad6bf577 100644 --- a/modules/base/pymod/table.py +++ b/modules/base/pymod/table.py @@ -1409,7 +1409,7 @@ Statistics for column %(col)s :param bottom: Bottom :type bottom: :class:`float` - :param legend: Legend for color explanation. + :param legend: Legend for color explanation, the corresponding column respectively. :type legend: :class:`bool` :param save: If set, a png image with name $save in the current working directory will be saved. @@ -1468,8 +1468,7 @@ Statistics for column %(col)s fig=plt.figure() ax=fig.add_subplot(111) legend_data=[] - print data - print yerr_data + for i in range(len(data)): legend_data.append(ax.bar(ind+i*single_bar_width,data[i],single_bar_width,bottom=bottom,color=colors[i],yerr=yerr_data[i], ecolor='black')[0]) -- GitLab