What would be a good way to manipulate the following type of times series data in R:
username;variable;2012-01-01;2012-01-15;2012-02-01;2012-03-01;2012-04-01;2012-05-01;2012-07-02
user1;var1;5;5;5;5;6;6;6
user1;var2;0;0;1;0;0;1;1
user1;var3;9;9;9;9;9;9;9
user2;var1;4;4;4;4;4;6;6
user2;var2;0;0;1;1;1;1;1
user2;var3;4;4;4;9;9;9;9
The data contains a set of time series for each monitored user. My goal is to have the data in such a format that I can easily make queries upon this data set for "deltas". That is, from a certain point in time I can look back and compute how long ago a certain variable changed and also get the original value and the new value from this query.
A function that would simply take a date and variable name as an argument would be perfect, e.g, fun(2012-07-02, var1), fun(2012-02-17, var1) or fun(2014-09-02, var1) would return four columns: username,original_value;new_value;days_since_change.
Are there R packages or pieces of code that would be able to do something similar?
date1-7map to2012-07-02? – Joshua Ulrich Jul 2 '12 at 12:24fun, --I edited to make the last date July -- since July2012 is out of range, would your output beuser1,5,5,4anduser2,4,6,3? – Carl Witthoft Jul 2 '12 at 13:45user1;5;6;92and for user2user2;4;6;62. that is, what the change in value was, and how many days has passed sine this change. So now date specified in the function is out of range. – Joshua Jul 2 '12 at 16:50