I'm tryng to sequence a dataset, and I'm a little lost with this. I have everything else done, data filtering, duplicated values eliminated, ordered by date... but im stuck with this, maybe one of the most simple parts. My goal is to convert this data frame:
Type Value
A 12
B 20
A 14
A 13
B 15
To something like this:
A 12,14,13
B 20,15
Any idea on how to do this?
Thanks in advance!