@@ -82,7 +82,7 @@ def save(self, fname, overwrite=False):
82
82
Parameters
83
83
----------
84
84
fname : path-like
85
- The file name (e.g. ``'my_layout .lout' ``).
85
+ The file name (must end with either `` .lout`` or ``.lay ``).
86
86
overwrite : bool
87
87
If True, overwrites the destination file if it exists.
88
88
@@ -306,7 +306,7 @@ def read_layout(fname=None, *, scale=True):
306
306
----------
307
307
fname : path-like | str
308
308
Either the path to a ``.lout`` or ``.lay`` file or the name of a
309
- built-in layout. c.f. Notes for a list of the available built-in
309
+ built-in layout. See Notes for a list of the available built-in
310
310
layouts.
311
311
scale : bool
312
312
Apply useful scaling for out the box plotting using ``layout.pos``.
@@ -405,7 +405,7 @@ def read_layout(fname=None, *, scale=True):
405
405
def make_eeg_layout (
406
406
info , radius = 0.5 , width = None , height = None , exclude = "bads" , csd = False
407
407
):
408
- """Create .lout file from EEG electrode digitization.
408
+ """Make a Layout object based on EEG electrode digitization.
409
409
410
410
Parameters
411
411
----------
@@ -486,7 +486,9 @@ def make_eeg_layout(
486
486
487
487
@fill_doc
488
488
def make_grid_layout (info , picks = None , n_col = None ):
489
- """Generate .lout file for custom data, i.e., ICA sources.
489
+ """Make a grid Layout object.
490
+
491
+ This can be helpful to plot custom data such as ICA sources.
490
492
491
493
Parameters
492
494
----------
0 commit comments