Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pypreprocess/reporting/preproc_reporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,6 @@ def _get_time_series_from_voxel(x, voxel):
'stc_plot_%s.png' % session_id)
pl.figure()
pl.plot(o_ts, 'o-')
pl.hold('on')
pl.plot(stc_ts, 's-')
pl.legend(('original BOLD', 'ST corrected BOLD'))
pl.title("session %s: STC QA for voxel (%s, %s, %s)" % (
Expand Down
2 changes: 0 additions & 2 deletions pypreprocess/time_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,11 +230,9 @@ def plot_session_starts(ax):

# slice plots min max mean
ax = next(iter_axes)
ax.hold(True)
ax.plot(np.mean(scaled_slice_diff, 0), 'k')
ax.plot(np.min(scaled_slice_diff, 0), 'b')
ax.plot(np.max(scaled_slice_diff, 0), 'r')
ax.hold(False)
xmax_labels(ax, S + 1, 'Slice number',
'Max/mean/min \n slice variation')

Expand Down