Skip to content

Commit

Permalink
Add plotting of optical density data
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-luke committed Sep 30, 2019
1 parent 12f04ea commit 37931f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mne/viz/raw.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def plot_raw(raw, events=None, duration=10.0, start=0.0, n_channels=20,
for t in ['grad', 'mag']:
inds += [pick_types(info, meg=t, ref_meg=False, exclude=[])]
types += [t] * len(inds[-1])
for t in ['hbo', 'hbr', 'fnirs_raw']:
for t in ['hbo', 'hbr', 'fnirs_raw', 'fnirs_od']:
inds += [pick_types(info, meg=False, ref_meg=False, fnirs=t,
exclude=[])]
types += [t] * len(inds[-1])
Expand Down

0 comments on commit 37931f3

Please sign in to comment.