I have a large dataset that has duplicate times (rows) with data in both row columns that I would like to combine. The data looks like this:
date P1 PT1 P2 PT2 P3 PT3
5/5/2011@11:40 NA NA NA NA 9.4 10.1
5/5/2011@11:40 5.6 10.2 8.5 10.1 NA NA
I would like to get to this
date P1 PT1 P2 PT2 P3 PT3
5/5/2011@11:40 5.6 10.2 8.5 10.1 9.4 10.1
My dataset is 10 minutes data for ten years and the repeats are somewhat random. The @
sign was added to display properly.
I've tried rbind
and rbind.row.names
to no avail.
Thanks!