Displaying 1 result from an estimated 1 matches for "338899".
Did you mean:
336899
2008 May 07
6
help with the unique function
Hi,
The unique function is easy to understand and use. Beyond that, I want to get also the frequency of repetition of each individual row in a data frame
Let me explain with an example :
x<-data.frame(a=c(1,2,3,1,2),b=c(2,3,4,2,3),c=c(10,20,30,10,20))
xu<-unique(x)
We have,
> x
? a b? c
1 1 2 10
2 2 3 20
3 3 4 30
4 1 2 10
5 2 3 20
> xu
? a b? c
1 1 2 10
2 2 3 20
3 3 4 30
I want to get