(
self,
src,
subject=None,
subjects_dir=None,
mode="stat_map",
bg_img="T1.mgz",
colorbar=True,
colormap="auto",
clim="auto",
transparent="auto",
show=True,
initial_time=None,
initial_pos=None,
verbose=None,
)
| 2385 | |
| 2386 | @copy_function_doc_to_method_doc(plot_volume_source_estimates) |
| 2387 | def plot( |
| 2388 | self, |
| 2389 | src, |
| 2390 | subject=None, |
| 2391 | subjects_dir=None, |
| 2392 | mode="stat_map", |
| 2393 | bg_img="T1.mgz", |
| 2394 | colorbar=True, |
| 2395 | colormap="auto", |
| 2396 | clim="auto", |
| 2397 | transparent="auto", |
| 2398 | show=True, |
| 2399 | initial_time=None, |
| 2400 | initial_pos=None, |
| 2401 | verbose=None, |
| 2402 | ): |
| 2403 | data = self.magnitude() if self._data_ndim == 3 else self |
| 2404 | return plot_volume_source_estimates( |
| 2405 | data, |
| 2406 | src=src, |
| 2407 | subject=subject, |
| 2408 | subjects_dir=subjects_dir, |
| 2409 | mode=mode, |
| 2410 | bg_img=bg_img, |
| 2411 | colorbar=colorbar, |
| 2412 | colormap=colormap, |
| 2413 | clim=clim, |
| 2414 | transparent=transparent, |
| 2415 | show=show, |
| 2416 | initial_time=initial_time, |
| 2417 | initial_pos=initial_pos, |
| 2418 | verbose=verbose, |
| 2419 | ) |
| 2420 | |
| 2421 | # Override here to provide the volume-specific options |
| 2422 | @verbose |
nothing calls this directly
no test coverage detected