I have data like the following:
data<-data.frame(id=c(1,1,3,4),n=c("x","y","e","w"))
data
id n
1 1 x
2 1 y
3 3 e
4 4 w
I want to get an output like the following:
data
id n
1 1 x
3 3 e
4 4 w
that is to say to have unique...
asked by
09.05.2018 / 18:48