Skip to content

Commit bbe41d7

Browse files
committed
remove print statement
1 parent 2e162cb commit bbe41d7

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

rabies/confound_correction_pkg/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,6 @@ def remove_trend(timeseries, frame_mask, order=1 , time_interval='all', keep_int
276276
highcut = int(time_interval.split('-')[1])
277277
W = closed_form(X[lowcut:highcut, :],Y[lowcut:highcut, :])
278278
predicted = X.dot(W) #always subtract the trend over the whole timeseries
279-
print(f'shape of predicted {predicted.shape}')
280279

281280
res = (Y-predicted) # add back the intercept after
282281
if keep_intercept:

0 commit comments

Comments
 (0)