I´m trying to produce a sorted table and export in to latex. However it seems xtable cannot cope with sorted tables. Suggestions?

   a<-sample(letters,500,replace=T)
    b<-table(a)
    c<-sort(table(a),decreasing=T)
    xtable(b)
    xtable(c)

//M

link|improve this question

77% accept rate
feedback

1 Answer

up vote 5 down vote accepted

Pretty easy: sort() does not return a table, but an array. Use as.table() to solve your problem :

a<-sample(letters,500,replace=T)
b<-table(a)
class(b)
c<-sort(table(a),decreasing=T)
class(c)
d <- as.table(c)
class(d)
xtable(d)
link|improve this answer
allright. Very appreciative of your help. //Misha – Misha Sep 7 '10 at 19:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.