Docs / Cards / Epoch
Epoch
Cuts the continuous recording into trials around events.
| Identifier | signalstudio.epoch |
|---|---|
| Category | epoching |
| Since | 0.3.0 |
Ports
| Port | Direction | Type | Notes |
|---|---|---|---|
in | input | Raw | |
out | output | Epochs |
Parameters
| Name | Type | Default | Meaning |
|---|---|---|---|
tmin | float | -0.5 s | Start of the window, relative to the event. |
tmax | float | 1.0 s | End of the window. |
baseline | enum | pre | Which span to use for baseline correction. one of: none, pre, whole |
Manifest
card.json
{
"id": "signalstudio.epoch",
"name": "Epoch",
"category": "epoching",
"inputs": [
{
"id": "in",
"type": "Raw"
}
],
"outputs": [
{
"id": "out",
"type": "Epochs"
}
],
"params": {
"tmin": {
"type": "float",
"default": -0.5,
"unit": "s",
"doc": "Start of the window, relative to the event."
},
"tmax": {
"type": "float",
"default": 1.0,
"unit": "s",
"doc": "End of the window."
},
"baseline": {
"type": "enum",
"default": "pre",
"values": [
"none",
"pre",
"whole"
],
"doc": "Which span to use for baseline correction."
}
}
}