MCPcopy
hub / github.com/mne-tools/mne-python / plot_image

Method plot_image

mne/evoked.py:546–593  ·  view source on GitHub ↗
(
        self,
        picks=None,
        exclude="bads",
        unit=True,
        show=True,
        clim=None,
        xlim="tight",
        proj=False,
        units=None,
        scalings=None,
        titles=None,
        axes=None,
        cmap="RdBu_r",
        colorbar=True,
        mask=None,
        mask_style=None,
        mask_cmap="Greys",
        mask_alpha=0.25,
        time_unit="s",
        show_names=None,
        group_by=None,
        sphere=None,
    )

Source from the content-addressed store, hash-verified

544
545 @copy_function_doc_to_method_doc(plot_evoked_image)
546 def plot_image(
547 self,
548 picks=None,
549 exclude="bads",
550 unit=True,
551 show=True,
552 clim=None,
553 xlim="tight",
554 proj=False,
555 units=None,
556 scalings=None,
557 titles=None,
558 axes=None,
559 cmap="RdBu_r",
560 colorbar=True,
561 mask=None,
562 mask_style=None,
563 mask_cmap="Greys",
564 mask_alpha=0.25,
565 time_unit="s",
566 show_names=None,
567 group_by=None,
568 sphere=None,
569 ):
570 return plot_evoked_image(
571 self,
572 picks=picks,
573 exclude=exclude,
574 unit=unit,
575 show=show,
576 clim=clim,
577 xlim=xlim,
578 proj=proj,
579 units=units,
580 scalings=scalings,
581 titles=titles,
582 axes=axes,
583 cmap=cmap,
584 colorbar=colorbar,
585 mask=mask,
586 mask_style=mask_style,
587 mask_cmap=mask_cmap,
588 mask_alpha=mask_alpha,
589 time_unit=time_unit,
590 show_names=show_names,
591 group_by=group_by,
592 sphere=sphere,
593 )
594
595 @copy_function_doc_to_method_doc(plot_evoked_topo)
596 def plot_topo(

Calls 1

plot_evoked_imageFunction · 0.85

Tested by 3

test_plot_epochs_imageFunction · 0.36
test_plot_evoked_imageFunction · 0.36