Removed noise generating print statements.
This commit is contained in:
parent
75b66914fd
commit
320cd97512
|
@ -154,8 +154,6 @@ class PCA(Model):
|
||||||
"""
|
"""
|
||||||
self.clear()
|
self.clear()
|
||||||
options = self._options
|
options = self._options
|
||||||
for item in options.items():
|
|
||||||
print item
|
|
||||||
self._dataset['X'] = data
|
self._dataset['X'] = data
|
||||||
self._data['X'] = data.asarray().astype('<f8')
|
self._data['X'] = data.asarray().astype('<f8')
|
||||||
if options['center']:
|
if options['center']:
|
||||||
|
@ -349,8 +347,6 @@ class PLS(Model):
|
||||||
dialog.set_output()
|
dialog.set_output()
|
||||||
|
|
||||||
#run with current data and options
|
#run with current data and options
|
||||||
for key, val in self._options.items():
|
|
||||||
print (key, val)
|
|
||||||
return self.run_o(a, b)
|
return self.run_o(a, b)
|
||||||
|
|
||||||
class Packer:
|
class Packer:
|
||||||
|
@ -933,7 +929,6 @@ class PlsOptionsDialog(OptionsDialog):
|
||||||
def qval_toggled(self, tb):
|
def qval_toggled(self, tb):
|
||||||
if tb.get_active():
|
if tb.get_active():
|
||||||
self._options['calc_qval'] = False
|
self._options['calc_qval'] = False
|
||||||
print "Setting not sens"
|
|
||||||
self.wTree.get_widget("qval_method").set_sensitive(False)
|
self.wTree.get_widget("qval_method").set_sensitive(False)
|
||||||
self.wTree.get_widget("q_iter").set_sensitive(False)
|
self.wTree.get_widget("q_iter").set_sensitive(False)
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -807,7 +807,6 @@ class ScatterPlot(Plot):
|
||||||
self.ax.draw_artist(self.sc)
|
self.ax.draw_artist(self.sc)
|
||||||
self.canvas.blit()
|
self.canvas.blit()
|
||||||
else:
|
else:
|
||||||
print self.ax.lines
|
|
||||||
self.canvas.draw()
|
self.canvas.draw()
|
||||||
|
|
||||||
|
|
||||||
|
|
Reference in New Issue