Edit laps and detect intervals

Issue #46 resolved
Daniel Besse created an issue

Lap editing (start and stop time)

Propose laps based on interval detection (for instance based on cumsum changepoint detection, see attached file)

Comments (2)

  1. Daniel Besse reporter

    Implementation in ExprEval:

    save("watts", equallyspaced_streams("watts", 1); retrieve watts
    save("changes", changepoints(recall("watts"), avg(recall("watts")))); find changepoints
    ; apply changes (!WARNING! this will change laps data without any undo possible)
    alter_activity_laps(recall("changes"))
    
  2. Log in to comment