I have one data set.This data set contain two columns first is column with ID and second is with VALUE.You can see code and table below :
DATA_TEST <- data.frame(
ID = c("03740270423222","03740270423222","03740270423222","03740270423222","01380926325248","01380926325248","01380926325248"),
VALUE = c("100","200","300","200","300","200","300"))
But here in table there are a lot of duplicate, so my intention is only to extract last value separably by each ID so final result should be like in table below:
So can anybody help me how to resolve this problem ?