We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 363ec32 commit d633f33Copy full SHA for d633f33
pylossless/dash/mne_visualizer.py
@@ -215,7 +215,8 @@ def inst(self, inst):
215
)
216
if self.scalings_arg == "auto":
217
for kind in np.unique(self.inst.get_channel_types()):
218
- self.scalings[kind] = np.percentile(self.inst.get_data(), 99.5)
+ data = self.inst.get_data(picks=kind)
219
+ self.scalings[kind] = np.percentile(data, 99.5)
220
else:
221
self.scalings.update(self.scalings_arg)
222
0 commit comments