如何从带有四舍五入数字的数据框中将表格导出为PNG

时间:2019-07-08 19:27:57

标签: r dataframe export png digits

我有很多数据帧,例如df,其中有几列和几行。因此,我搜索了一些东西来将表格直接作为png文件写入。因此,我不必在另一个程序中亲自生成所有表。

df <- structure(c(1.688, 2.402, 2.636, 2.656, 2.8, 2.337, 0.261, 0.3, 
0.299, -0.158, -0.79, -0.115, 2.196, 3.067, 3.31, 3.437, 3.526, 
3.012, 1.895, 2.643, 3.31, 3.085, 3.07, 2.735), .Dim = c(6L, 
4L), .Dimnames = list(c("U", "V", "W", "X", "Y", "Z"), c("A", 
"B", "C", "D")))

我已经阅读了有关grid.table(程序包gridExtra)和htmlTable(程序包htmlTable)的一些知识,并且我还尝试着做一些已经讨论过的代码在这样。就我而言,我还没有找到解决方案。事先,这两个功能实际上都起作用。

grid.table(df)
htmlTable(df)

就我而言,在最科学的工作中,整个表中的数字应相同。因此,0.300应该写为0.300,而不是0.3。据我所知,两个函数都不包含rounddigits函数。

使用@ jay.sf的代码,我可以解决四舍五入数字的问题。

df <- apply(df, 1:2, formatC, format="f", digits=3)  # format digits

pdf("df.pdf", height = 12, width = 10)
grid.table(df)
dev.off()

因此,我找到了,其中的值舍入了3位数字。 附加 title 可能会很好,但并非绝对必要。

谢谢!

1 个答案:

答案 0 :(得分:1)

有一种方法可以绘制东西。

df <- apply(df, 1:2, formatC, format="f", digits=3)  # format digits

# Helper sequences    
sy <- seq(.9, 0, length.out=nrow(df))
sx <- seq(0.1, 1, length.out=ncol(df))
adj <- .03  # for adjustment

png(width=600, height=400, res=100)

par(mar=c(2, 2, 4, 2) + 0.1)
plot.new()  # initialize plot
# plot column names
sapply(seq(ncol(df)), function(x) 
  text(sx[x] - adj, 1 + adj, colnames(df)[x], font=2, xpd=TRUE))
# plot row names
sapply(seq(nrow(df)), function(x) 
  text(0 - adj, sy[x], rownames(df)[x], font=2, xpd=TRUE))
# plot values
mapply(function(x, y) text(sx[x], sy[y], labels=df[y, x]), 
       rep(seq(ncol(df)), each=nrow(df)), rep(seq(nrow(df)), ncol(df)))
# plot title
text(-.05, 1.2, "Good additional title here", xpd=TRUE, cex=1.5, font=2, adj=0)

dev.off()

PNG生成:

enter image description here