6
我試圖生成一個排序表並輸出到latex中。但是,它似乎xtable無法應付排序表。建議?用xtable排序乳膠輸出表
a<-sample(letters,500,replace=T)
b<-table(a)
c<-sort(table(a),decreasing=T)
xtable(b)
xtable(c)
//中號
我試圖生成一個排序表並輸出到latex中。但是,它似乎xtable無法應付排序表。建議?用xtable排序乳膠輸出表
a<-sample(letters,500,replace=T)
b<-table(a)
c<-sort(table(a),decreasing=T)
xtable(b)
xtable(c)
//中號
很簡單:排序()不返回一個表,而是一個數組。使用as.table()來解決你的問題:
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)
好吧。非常感謝你的幫助。 //米莎 – Misha 2010-09-07 19:37:03