Projects/laydi
Projects
/
laydi
Archived
7
0
Fork 0

Removed noise generating print statements.

This commit is contained in:
Einar Ryeng 2007-01-31 14:58:37 +00:00
parent 75b66914fd
commit 320cd97512
2 changed files with 0 additions and 6 deletions

View File

@ -154,8 +154,6 @@ class PCA(Model):
"""
self.clear()
options = self._options
for item in options.items():
print item
self._dataset['X'] = data
self._data['X'] = data.asarray().astype('<f8')
if options['center']:
@ -349,8 +347,6 @@ class PLS(Model):
dialog.set_output()
#run with current data and options
for key, val in self._options.items():
print (key, val)
return self.run_o(a, b)
class Packer:
@ -933,7 +929,6 @@ class PlsOptionsDialog(OptionsDialog):
def qval_toggled(self, tb):
if tb.get_active():
self._options['calc_qval'] = False
print "Setting not sens"
self.wTree.get_widget("qval_method").set_sensitive(False)
self.wTree.get_widget("q_iter").set_sensitive(False)
else:

View File

@ -807,7 +807,6 @@ class ScatterPlot(Plot):
self.ax.draw_artist(self.sc)
self.canvas.blit()
else:
print self.ax.lines
self.canvas.draw()