Consider a table of time-frequency
2008-01-01 2008-01-03 2008-01-05 2008-01-06 2008-01-07 2008-01-08
1 8 2 2 3 1
Note that 2008-01-02 and 2008-01-04 are lost.
The expected result looks like this:
2008-01-01 2008-01-02 2008-01-03 2008-01-04 2008-01-05 2008-01-06 2008-01-07 2008-01-08
1 0 8 0 2 2 3 1
Or in the form of a date frame:
Time Frequency
2008-01-01 1
2008-01-02 0
2008-01-03 8
2008-01-04 0
2008-01-05 2
2008-01-06 2
2008-01-07 3
2008-01-08 1