I have 2 time series with me. Each Time series is traffic data (# of vehicles passed) for a sensor. However, one time series is hourly and is records traffic data at, say, 1pm, 2pm, 3pm 4pm ...... and so on while the other time series has traffic data recoded at every half an hour, say, 2:15 pm, 2:45 pm, 3:15 pm, 3:45 pm ..... and so on. If I want to merge these 2 series into 1. Does anyone know any framework/package which can do this? Also, what could be the frequency of the resultant? Does it have to be the one with more frequency (i.e. half hourly in this case) so as to lose minimum data?
Any help would be appreciated.
Edit 1: Here's sample example:
Sensor 1:
TimeStamp VehiclesPassed,
1:00 pm 400, 2:00 pm 800, 3:00 pm 900, 4:00 pm 500,
Sensor 2:
TimeStamp VehiclesPassed,
2:15 pm 200, 2:45 pm 300, 3:15 pm 500, 3:45 pm 600
What should the resultant time-series look like? I can not give you output as I am struggling to come u with one which is more acceptable and is standard way of doing in other available frameworks/products.
Thanks (Let me know if I should explain it more.)