是否可以将vector作为ftable中的条目?例如,对于input:
> mat (or df) 1 0 1 1 1 0 1 1 0
字符串我想要输出
> ftable(mat) 1 0 1 1 1 0 1 2
型
v7pvogib1#
mat <- matrix(c(1,1,1,0,1,1,1,0,0),nrow = 3) ftable(apply(mat,1,\(x)paste(x,collapse="")))
字符串
1条答案
按热度按时间v7pvogib1#
字符串