Backboards: 
Posts: 154
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:

[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]


Post a message   top
Replies are disabled on threads older than 7 days.