Displaying 1 result from an estimated 1 matches for "t8dfe471e360ac80264c6c".
2009 Apr 29
0
combine_factor to empty level
ID: T8dfe471e360ac80264c6c
Dear,
I'm using R 2.8.1 with the package reshape version 0.8.2 .
It seems that the combine_factor function has problems with combining levels to
an empty level:
#EXAMPLE WORKING
test<-sample(c(1:10),1000,replace=T)
testf<-factor(test, c(1:10), LETTERS[1:10])
table(testf,exclude=NULL)
t...