From cee9e96e99abc98ce4fd0ae5e0a9ffcb0c3919f3 Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Wed, 3 Aug 2022 09:14:53 -0400 Subject: [PATCH] BUG: Fix minor baseline bug (#11001) --- examples/time_frequency/time_frequency_erds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/time_frequency/time_frequency_erds.py b/examples/time_frequency/time_frequency_erds.py index a71286eb446..3aef8d2ceb0 100644 --- a/examples/time_frequency/time_frequency_erds.py +++ b/examples/time_frequency/time_frequency_erds.py @@ -69,7 +69,7 @@ # Here we set suitable values for computing ERDS maps. freqs = np.arange(2, 36) # frequencies from 2-35Hz vmin, vmax = -1, 1.5 # set min and max ERDS values in plot -baseline = [-1, 0] # baseline interval (in s) +baseline = (-1, 0) # baseline interval (in s) cnorm = TwoSlopeNorm(vmin=vmin, vcenter=0, vmax=vmax) # min, center & max ERDS kwargs = dict(n_permutations=100, step_down_p=0.05, seed=1,