Parameters: |
- pos : ndarray, shape (n_pos, 10) | list of ndarray
The head position data. Can also be a list to treat as a
concatenation of runs.
- mode : str
Can be ‘traces’ (default) to show position and quaternion traces,
or ‘field’ to show the position as a vector field over time.
The ‘field’ mode requires matplotlib 1.4+.
- cmap : matplotlib Colormap
Colormap to use for the trace plot, default is “viridis”.
- direction : str
Can be any combination of “x”, “y”, or “z” (default: “z”) to show
directional axes in “field” mode.
- show : bool
Show figure if True. Defaults to True.
- destination : str | array-like, shape (3,) | None
The destination location for the head, assumed to be in head
coordinates. See mne.preprocessing.maxwell_filter() for
details.
- info : instance of mne.Info | None
Measurement information. If provided, will be used to show the
destination position when destination is None , and for
showing the MEG sensors.
- color : color object
The color to use for lines in mode == 'traces' and quiver
arrows in mode == 'field' .
- axes : array-like, shape (3, 2)
The matplotlib axes to use. Only used for mode == 'traces' .
|