我想要一个百分比表,将值格式化为百分比并以漂亮的格式显示它们。如果重要的话,我会使用RStudio并编织成PDF格式。
我已经看过其他有关此事的帖子,但其中没有一个看起来干净,并且不能很好地运作。
例如,下面的apply语句格式为百分比,但是,它会删除年份,并用引号括起表格。我可以通过使用kable来修复引号,但这似乎是一个常见的问题,有一个包或技巧。
非常感谢任何帮助。
myTable <- structure(c(.20, .10, .25, .10,
.20, .10, .25, .20,
.20, .10, .25, .30,
.20, .10, .25, .40,
.20, .60, .25, .0),
class = "table",
.Dim = c(5L, 4L),
.Dimnames = structure(list(c("2006", "2007", "2008", "2009", "2010"),
c("1", "2", "3", "4")),
.Names = c("", "")))
# Table is fine, but needs decimal shifted and % sign added
myTable
formattedTable <- apply(myTable*100, 2, function(u) sprintf("%.0f%%", u))
# Decimal is shifted and % sign added, but no years, and quotes around text
formattedTable
# Fixes the quotes issue, still no years
kable(formattedTable)
答案 0 :(得分:2)
您可以使用表中的属性创建新矩阵,然后强制转换为data.frame。无需apply()
循环。
as.data.frame(matrix(
sprintf("%.0f%%", myTable*100),
nrow(myTable),
dimnames = dimnames(myTable)
))
# 1 2 3 4
# 2006 20% 10% 25% 40%
# 2007 10% 25% 30% 20%
# 2008 25% 20% 20% 60%
# 2009 10% 20% 10% 25%
# 2010 20% 10% 25% 0%
答案 1 :(得分:0)
如果您正在编写.rnw文件,我想提一下是一个R包,它可以帮助创建名为xtable
的表。例如,你可以写
formatted_table <- as.data.frame(matrix(
sprintf("%.0f%%", myTable*100),
nrow(myTable),
dimnames = dimnames(myTable)
))
xtable(formatted_table)
在knitr chunk中并设置chunk option results ='asis',以便您可以直接获得乳胶表。