You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,12 +114,12 @@ FOOOF.report() fits the model, plots the original power spectrum with the associ
114
114
FOOOF also accepts parameters for fine-tuning the fit. For example:
115
115
116
116
```python
117
-
fm = FOOOF(peak_width_limits=[1.0, 8.0], max_n_peaks=6, min_peak_amplitude=0.1, peak_threshold=2.0)
117
+
fm = FOOOF(peak_width_limits=[1.0, 8.0], max_n_peaks=6, min_peak_height=0.1, peak_threshold=2.0)
118
118
```
119
119
120
120
*`peak_width_limits` sets the possible lower- and upper-bounds for the fitted peak widths.
121
121
*`max_n_peaks` sets the maximum number of peaks to fit.
122
-
*`min_peak_amp` sets an absolute limit on the minimum amplitude (above aperiodic) for any extracted peak.
122
+
*`min_peak_height` sets an absolute limit on the minimum amplitude (above aperiodic) for any extracted peak.
123
123
*`peak_threshold`, also sets a threshold above which a peak amplitude must cross to be included in the model. This parameter is in terms of standard deviation above the noise of the flattened spectrum.
124
124
125
125
FOOOF also has convenience methods for running the FOOOF model across matrices of multiple power spectra, as well as functionality for saving and loading results, creating reports from FOOOF outputs, and utilities to further analize FOOOF results.
0 commit comments