diff --git a/crisp.py b/crisp.py index 257e2cf..b52a7ed 100644 --- a/crisp.py +++ b/crisp.py @@ -118,9 +118,9 @@ def cisc_grp(X, Y): def crisp(X, Y): - print 'regressing from x to y' + # print 'regressing from x to y' sxtoy = regress(X, Y) - print 'regressing from y to x' + # print 'regressing from y to x' sytox = regress(Y, X) return (sxtoy, sytox)