I've working on a project which involves datasets with points at, what should be, regular intervals.
However, due to things such as down times / reboots / outages, the data collected (from sensors) may have holes in it, be offset, etc.
A simple approach I was thinking of was iterate through the datapoints, calculating the delta between each point and the last before using the modal delta as the interval at which the sensor, in this case, should be outputting -- I don't have access to the actual interval.
Do you think this would suffice, or are there better ways to do this?