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
this seems to be the problem of the data I'm working with (fixes collected every two hours at uneven hours). Is setting the threshold = '5 minutes' is not enough in this case? If the "sliding window" of 5 minutes starts at midnight and scans the time series, it should capture fixes aggregated both at even and uneven hours, isn't that so? Thanks, Tomasz
This issue is concerned with the (possibly rare?) instance where one might want to group on uneven 2 hour fixes, with a 2 hour threshold. Not sure when one might want this, but right now - it isn't possible.
For example, this data with 2 hour fixes, on the odd hours, with the nearest hour being detected is even.
group_times
can't group odd time thresholds e.g. 2 hour threshold when times are 1am, 3am, 5am... 11pm.This is because
group_times
considers the threshold in the context of 24 hours, and a two hour threshold would then group times to 0, 2, 4, 6...Is there a way around this? Provide an 'offset' argument? Or just make sure it is clear in the vignettes and documentation?
A current workaround is using
threshold = '1 hour'
which will at least group to 0,1,2,3, ...The text was updated successfully, but these errors were encountered: