mne.channels.DigMontage¶
-
class
mne.channels.
DigMontage
(dev_head_t=None, dig=None, ch_names=None)[source]¶ Montage for digitized electrode and headshape position data.
Warning
Montages are typically created using one of the helper functions in the
See Also
section below instead of instantiating this class directly.- Parameters
See also
Notes
New in version 0.9.0.
Methods
__add__
(other)Add two DigMontages.
__hash__
(/)Return hash(self).
copy
()Copy the DigMontage object.
plot
([scale_factor, show_names, kind, show, …])Plot a montage.
rename_channels
(mapping)Rename the channels.
save
(fname)Save digitization points to FIF.
-
copy
()[source]¶ Copy the DigMontage object.
- Returns
- diginstance of
DigMontage
The copied DigMontage instance.
- diginstance of
-
plot
(scale_factor=20, show_names=True, kind='topomap', show=True, sphere=None, verbose=None)[source]¶ Plot a montage.
- Parameters
- scale_factor
float
Determines the size of the points.
- show_namesbool
Whether to show the channel names.
- kind
str
Whether to plot the montage as ‘3d’ or ‘topomap’ (default).
- showbool
Show figure if True.
- sphere
float
| array_like |str
|None
The sphere parameters to use for the cartoon head. Can be array-like of shape (4,) to give the X/Y/Z origin and radius in meters, or a single float to give the radius (origin assumed 0, 0, 0). Can also be a spherical ConductorModel, which will use the origin and radius. Can be “auto” to use a digitization-based fit. Can also be None (default) to use ‘auto’ when enough extra digitization points are available, and 0.095 otherwise. Currently the head radius does not affect plotting.
New in version 0.20.
- verbosebool,
str
,int
, orNone
If not None, override default verbose level (see
mne.verbose()
and Logging documentation for more). If used, it should be passed as a keyword-argument only.
- scale_factor
- Returns
- figinstance of
matplotlib.figure.Figure
The figure object.
- figinstance of
Examples using
plot
:
-
rename_channels
(mapping)[source]¶ Rename the channels.
- Parameters
- mapping
dict
|callable()
A dictionary mapping the old channel to a new channel name e.g. {‘EEG061’ : ‘EEG161’}. Can also be a callable function that takes and returns a string.
Changed in version 0.10.0: Support for a callable function.
- mapping
- Returns
- instinstance of
DigMontage
The instance. Operates in-place.
- instinstance of