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
When asked which data to plot after a trial or after sating yes to plotting again, if you do not use the "plot raw only" option, it will become impossible to "plot raw only" for this trial and the next ones unless you reload the module.
This is a simple fix, the "plot raw only" option was missed in /processing/compute_mvc.py line 357 if statement :
if plot != "c":
if plot == "p":
data = processed_data
legend = ["Processed"]
elif plot == "b":
data = [raw_data, processed_data]
legend = ["Raw data", "Processed"]
When asked which data to plot after a trial or after sating yes to plotting again, if you do not use the "plot raw only" option, it will become impossible to "plot raw only" for this trial and the next ones unless you reload the module.
This is a simple fix, the "plot raw only" option was missed in
/processing/compute_mvc.py
line 357 if statement :just add
The text was updated successfully, but these errors were encountered: