mne.viz.
plot_raw
(raw, events=None, duration=10.0, start=0.0, n_channels=20, bgcolor='w', color=None, bad_color=(0.8, 0.8, 0.8), event_color='cyan', scalings=None, remove_dc=True, order='type', show_options=False, title=None, show=True, block=False, highpass=None, lowpass=None, filtorder=4, clipping=None)¶Plot raw data
Parameters: | raw : instance of Raw
events : array | None
duration : float
start : float
n_channels : int
bgcolor : color object
color : dict | color object | None
bad_color : color object
event_color : color object | dict
scalings : dict | None
remove_dc : bool
order : ‘type’ | ‘original’ | array
show_options : bool
title : str | None
show : bool
block : bool
highpass : float | None
lowpass : float | None
filtorder : int
clipping : str | None
|
---|---|
Returns: | fig : Instance of matplotlib.figure.Figure
|
Notes
The arrow keys (up/down/left/right) can typically be used to navigate
between channels and time ranges, but this depends on the backend
matplotlib is configured to use (e.g., mpl.use(‘TkAgg’) should work). The
scaling can be adjusted with - and + (or =) keys. The viewport dimensions
can be adjusted with page up/page down and home/end keys. Full screen mode
can be to toggled with f11 key. To mark or un-mark a channel as bad, click
on the rather flat segments of a channel’s time series. The changes will be
reflected immediately in the raw object’s raw.info['bads']
entry.