Using timechart, I have a a table with a list of dates and a value. However, the dates are non-consecutive (although ordered). I want to add in the missing dates inbetween the current values and backfill the values for the extra dates.
For example, my data looks like this currently:
_time values(A)
2014-05-04 73
2014-05-18 74
2014-06-01 75
2014-06-15 76
I would like for this to be transformed into the following:
_time values(A)
2014-05-04 73
2014-05-05 73
2014-05-06 73
....
2014-05-18 74
2014-05-19 74
2014-05-20 74
...
↧