给出以下示例:
library(pander)
tableAbs <- Titanic[1, 1, , ]
tablePct <- round(prop.table(tableAbs) * 100, 2)
table <- cbind(tableAbs, tablePct)
pander(table)
----------------------------------
No Yes No Yes
----------- ---- ----- ----- -----
**Child** 0 5 0 2.78
**Adult** 118 57 65.56 31.67
----------------------------------
我想在那个0
百分比上保留所有尾随零,所以这就是我所做的:
panderOptions("keep.trailing.zeros", TRUE)
pander(table)
------------------------------------
No Yes No Yes
----------- ------ ----- ----- -----
**Child** 0.00 5.00 0.00 2.78
**Adult** 118.00 57.00 65.56 31.67
------------------------------------
现在的问题是,即使绝对频率也附加.00
。由于这些是自然数,因此保持那些尾随零是没有意义的。我该怎么做?
答案 0 :(得分:2)
感谢评论中的rawr。
您可以使用format
来保留尾随零。这会将舍入值转换为character
,同时保留表格的尺寸。
tablePct <- format(round(prop.table(tableAbs) * 100, 2))
修改强>
似乎可以使用xtabs
类
mtcars$am[mtcars$vs == 1] <- 0
x <- xtabs(~ am + vs, data=mtcars)
tab <- format(round(100*prop.table(x), 2))
tab <- cbind(x, tab)
pander(tab)
---------------------------
0 1 0 1
------- --- --- ----- -----
**0** 12 14 37.50 43.75
**1** 6 0 18.75 0.00
---------------------------