(
self,
picks=None,
sigma=0.0,
vmin=None,
vmax=None,
colorbar=True,
order=None,
show=True,
units=None,
scalings=None,
cmap=None,
fig=None,
axes=None,
overlay_times=None,
combine=None,
group_by=None,
evoked=True,
ts_args=None,
title=None,
clear=False,
)
| 1485 | |
| 1486 | @copy_function_doc_to_method_doc(plot_epochs_image) |
| 1487 | def plot_image( |
| 1488 | self, |
| 1489 | picks=None, |
| 1490 | sigma=0.0, |
| 1491 | vmin=None, |
| 1492 | vmax=None, |
| 1493 | colorbar=True, |
| 1494 | order=None, |
| 1495 | show=True, |
| 1496 | units=None, |
| 1497 | scalings=None, |
| 1498 | cmap=None, |
| 1499 | fig=None, |
| 1500 | axes=None, |
| 1501 | overlay_times=None, |
| 1502 | combine=None, |
| 1503 | group_by=None, |
| 1504 | evoked=True, |
| 1505 | ts_args=None, |
| 1506 | title=None, |
| 1507 | clear=False, |
| 1508 | ): |
| 1509 | return plot_epochs_image( |
| 1510 | self, |
| 1511 | picks=picks, |
| 1512 | sigma=sigma, |
| 1513 | vmin=vmin, |
| 1514 | vmax=vmax, |
| 1515 | colorbar=colorbar, |
| 1516 | order=order, |
| 1517 | show=show, |
| 1518 | units=units, |
| 1519 | scalings=scalings, |
| 1520 | cmap=cmap, |
| 1521 | fig=fig, |
| 1522 | axes=axes, |
| 1523 | overlay_times=overlay_times, |
| 1524 | combine=combine, |
| 1525 | group_by=group_by, |
| 1526 | evoked=evoked, |
| 1527 | ts_args=ts_args, |
| 1528 | title=title, |
| 1529 | clear=clear, |
| 1530 | ) |
| 1531 | |
| 1532 | @verbose |
| 1533 | def drop(self, indices, reason="USER", verbose=None): |
nothing calls this directly
no test coverage detected