mne.viz.plot_chpi_snr#
- mne.viz.plot_chpi_snr(snr_dict, axes=None)[source]#
 Plot time-varying SNR estimates of the HPI coils.
- Parameters:
 - snr_dict
dict The dictionary returned by
compute_chpi_snr. Must have keystimes,freqs,TYPE_snr,TYPE_power, andTYPE_resid(whereTYPEcan bemagorgrador both).- axes
None|listofmatplotlib.axes.Axes Figure axes in which to draw the SNR, power, and residual plots. The number of axes should be 3× the number of MEG sensor types present in
snr_dict. IfNone(the default), a newFigureis created with the required number of axes.
- snr_dict
 - Returns:
 - figinstance of 
matplotlib.figure.Figure A figure with subplots for SNR, power, and residual variance, separately for magnetometers and/or gradiometers (depending on what is present in
snr_dict).
- figinstance of 
 
Notes
If you supply a list of existing
Axes, then the figure legend will not be drawn automatically. If you still want it, runningfig.legend(loc='right', title='cHPI frequencies')will recreate it.New in v0.24.