Skip to content

Commit d52a0d3

Browse files
authored
MAINT: Fix example (mne-tools#12035)
1 parent e99ea74 commit d52a0d3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

examples/time_frequency/time_frequency_erds.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194

195195
df_mean = (
196196
df.query("time > 1")
197-
.groupby(["condition", "epoch", "band", "channel"])[["value"]]
197+
.groupby(["condition", "epoch", "band", "channel"], observed=False)[["value"]]
198198
.mean()
199199
.reset_index()
200200
)
@@ -207,7 +207,6 @@
207207
"channel",
208208
"value",
209209
"band",
210-
n_boot=10,
211210
cut=0,
212211
palette="deep",
213212
order=["C3", "Cz", "C4"],

0 commit comments

Comments
 (0)