Skip to content

Commit

Permalink
Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
hoechenberger committed Nov 2, 2023
1 parent 24ef24e commit 9734eed
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/source/settings/preprocessing/artifacts.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ tags:
- reject
- reject_tmin
- reject_tmax
- autoreject_n_interpolate
8 changes: 6 additions & 2 deletions mne_bids_pipeline/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -1389,7 +1389,9 @@
reject_tmin: Optional[float] = None
"""
Start of the time window used to reject epochs. If `None`, the window will
start with the first time point.
start with the first time point. Has no effect if
[`reject`][mne_bids_pipeline._config.reject] has been set to `"autoreject_local"`.
???+ example "Example"
```python
reject_tmin = -0.1 # 100 ms before event onset.
Expand All @@ -1399,7 +1401,9 @@
reject_tmax: Optional[float] = None
"""
End of the time window used to reject epochs. If `None`, the window will end
with the last time point.
with the last time point.Has no effect if
[`reject`][mne_bids_pipeline._config.reject] has been set to `"autoreject_local"`.
???+ example "Example"
```python
reject_tmax = 0.3 # 300 ms after event onset.
Expand Down

0 comments on commit 9734eed

Please sign in to comment.