eelbrain.pipeline.SecondaryEpoch
- class eelbrain.pipeline.SecondaryEpoch(base, sel=None, **kwargs)
Epoch inheriting events from another epoch
Secondary epochs inherits events and corresponding trial rejection from another epoch (the
base). They also inherit all other parameters unless they are explicitly overridden. For exampleselcan be used to select a subset of the events in thebaseepoch.- Parameters:
base (str) – Name of the epoch whose parameters provide defaults for all parameters. Additional parameters override parameters of the
baseepoch, with the except fortrigger_shift, which is applied additively to thetrigger_shiftof thebaseepoch.sel (str) – Apply additional event selection after applying
selof thebaseepoch.... – Override base-epoch parameters (see
PrimaryEpoch).
See also