In response to
"I'm struggling with how to merge two distinct data sets (of the form 'date,quantity') into a graphable data set -- nm"
by
Beryllium
|
here's an example:
Posted by
Beryllium (aka grayman)
Apr 12 '10, 15:15
|
[2010-04-01,1210]
[2010-04-02,1888]
[2010-04-03,1717]
and I want to merge them with:
[2010-02-01,1111]
[2010-02-02,1000]
[2010-02-03,1222]
to create this monstrosity:
[2010-04-01 / 2010-02-01,1210,1111]
[2010-04-02 / 2010-02-02,1888,1000]
[2010-04-03 / 2010-02-03,1717,1222]
|