Method
plot
(
self,
ch_type=None,
sensors=True,
show_names=False,
mask=None,
mask_params=None,
contours=6,
outlines="head",
sphere=None,
image_interp=_INTERPOLATION_DEFAULT,
extrapolate=_EXTRAPOLATE_DEFAULT,
border=_BORDER_DEFAULT,
res=64,
size=1,
cmap=None,
vlim=(None, None),
cnorm=None,
axes=None,
colorbar=True,
cbar_fmt="%1.1e",
title=None,
show=True,
)
Source from the content-addressed store, hash-verified
| 265 | |
| 266 | @copy_function_doc_to_method_doc(plot_regression_weights) |
| 267 | def plot( |
| 268 | self, |
| 269 | ch_type=None, |
| 270 | sensors=True, |
| 271 | show_names=False, |
| 272 | mask=None, |
| 273 | mask_params=None, |
| 274 | contours=6, |
| 275 | outlines="head", |
| 276 | sphere=None, |
| 277 | image_interp=_INTERPOLATION_DEFAULT, |
| 278 | extrapolate=_EXTRAPOLATE_DEFAULT, |
| 279 | border=_BORDER_DEFAULT, |
| 280 | res=64, |
| 281 | size=1, |
| 282 | cmap=None, |
| 283 | vlim=(None, None), |
| 284 | cnorm=None, |
| 285 | axes=None, |
| 286 | colorbar=True, |
| 287 | cbar_fmt="%1.1e", |
| 288 | title=None, |
| 289 | show=True, |
| 290 | ): |
| 291 | return plot_regression_weights( |
| 292 | self, |
| 293 | ch_type=ch_type, |
| 294 | sensors=sensors, |
| 295 | show_names=show_names, |
| 296 | mask=mask, |
| 297 | mask_params=mask_params, |
| 298 | contours=contours, |
| 299 | outlines=outlines, |
| 300 | sphere=sphere, |
| 301 | image_interp=image_interp, |
| 302 | extrapolate=extrapolate, |
| 303 | border=border, |
| 304 | res=res, |
| 305 | size=size, |
| 306 | cmap=cmap, |
| 307 | vlim=vlim, |
| 308 | cnorm=cnorm, |
| 309 | axes=axes, |
| 310 | colorbar=colorbar, |
| 311 | cbar_fmt=cbar_fmt, |
| 312 | title=title, |
| 313 | show=show, |
| 314 | ) |
| 315 | |
| 316 | def _check_inst(self, inst): |
| 317 | """Perform some sanity checks on the input.""" |