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
@t-b I'm seeing the data plotting style change in the middle of the plot. It seems like the method for changing the style depending on the number of points is being applied to the same plot
@t-b, thanks for creating the issue. I did not realize that contiguous epochs from the same sweep resulted in independent arrays/waves. What do you think about setting the trace style based on the amount of data/points from the same sweep?
What do you think about setting the trace style based on the amount of data/points from the same sweep?
While technically possible, this is quite a bit off effort. Is there a case where you would like to have markers for sweep data? I think I'd always prefer line style.
Originally posted by @timjarsky in #2061 (comment)
This is also the behaviour in main 818d5fc (Merge pull request #2277 from AllenInstitute/bugfix/2277-make-tests-pass-with-ip10, 2024-10-14).
gives
The reason for this is that we have a heuristic to determine if we want to use markers or lines. We usually use markers for less than 1k points.
There is also the option to override the trace style per operation, e.g. we currently always use lines for
fit
. We could do the same fordata
The text was updated successfully, but these errors were encountered: