So -- I'm working with a df that's got these groups of repeated observations indexed by an id, like so:
id | x1 | x2 | y1 | y2
1 a b c 2
1 a b d 3
1 a b e 4
2 ...
2 ...
...
i.e., all the variables within each group are identical, save for y1 and y2 (generally speaking, y2 'modifies' y1.) All these variables that I've listed here are factors. What I'd like to do is to turn each one of these groups into something that resembles the following:
id | x1 | x2 | y1' | y2' | y3'
1 a b c-2 d-3 e-4
2 ...
where the y1's (y1-prime) are concatenations of adjacent values of y1 and y2, with a dash in between. However, the number of y1's differs from id-group to id-group, but I'd be happy with a very wide data frame that allows for these extras as a solution. Anyhow, I've (rather futilely, I must confess) tried melting and casting these data with reshape2, but at this point, I'm not sure whether I'm not going about this right, or that package just isn't a fit for what I'm trying to do here. Any advice would be appreciated -- thanks!