I am trying to see what is the best way of adding empty rows to a data source.
Current
Name Time Calls
---- ---- -----
N1 1:00 2
N1 2:00 4
N1 5:00 10
Want
Name Time Calls
---- ---- -----
N1 1:00 2
N1 2:00 4
N1 3:00 0
N1 4:00 0
N1 5:00 10
...
I am using timeBucket which does a great job with existing data, but not sure how to proceed on adding the missing values. It would be nice to have timeBucket with an option to fill in the blanks, but in the meantime, do you have other suggestions?