I need help to remove all repeated rows in the same interval values of data.frame.
For example, i have a data.frame like :
Time X Y Z
01/01/2011 00:00 101 200 302
01/01/2011 00:05 101 200 302
01/01/2011 00:10 101 200 302
01/01/2011 00:20 100 200 303
01/01/2011 00:25 100 200 303
01/01/2011 00:30 100 200 303
01/01/2011 00:35 101 200 302
01/01/2011 00:40 100 200 303
01/01/2011 00:45 100 200 303
And after removing the repeated row values (x,y,z), i will have a result just like below :
Time X Y Z
01/01/2011 00:00 101 200 302
01/01/2011 00:20 100 200 303
01/01/2011 00:35 101 200 302
01/01/2011 00:40 100 200 303
What i have tried with : unique or duplicate function, but they give the different result.
ex/ eliminate <- data[!duplicated(data[,c("X","Y","Z")]),]
This code just delete all the duplicated values in the all data.frame.
Is there somebody can help me for find the solution?
Thanks before, Regards,
Yougyz
dups = df[duplicated(df[,2:4]),]andnodups = df[!(duplicated(df[,2:4])),]worked for me. Could you show us what you get when you use theduplicated()function? – Davy Kavanagh Jun 20 '12 at 11:21