xtable 中摘要的结果

xtable 中摘要的结果

我有一个值向量,我想在 LaTeX 中使用“summary”的输出。我理解这xtable正是为了这个目的而设计的。

然而 ...

> values <- c(1,2,3)
> summary(values)
Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
1.0     1.5     2.0     2.0     2.5     3.0 
> xtable(summary(values))
Error in xtable.table(summary(values)) : 
  xtable.table is not implemented for tables of > 2 dimensions

我在这里做错了什么?

答案1

我认为这是因为xtable如果你总结的是数据框而不是向量,那会更开心。试试这个:

values <- c(1,2,3)
values <- data.frame(x=values)
xtable(summary(values))

答案2

xtable(data.frame(summary(values[1:6])))

相关内容