R - 在Excel输出中添加总行

时间:2017-10-11 05:30:12

标签: r excel openxls

我想在工作表中编写data.frame时添加一行(如在Excel表格中)。 这是我现在的代码(使用openxlsx):

writeDataTable(wb=WB, sheet="Data", x=X, withFilter=F, bandedRows=F, firstColumn=T)

X包含一个包含8个字符变量和1个数字变量的data.frame。因此,总行应该只包含数字行的总数(如果我能以某种方式添加Excel总行功能,最好是我在将表写入工作簿对象时使用firstColumn而不是手动添加总行)

我在StackOverflow和官方openxslx文档中搜索了一个解决方案,但无济于事。请使用openxlsx建议解决方案。

编辑:

添加数据样本:

A  B  C  D  E  F  G  H  I
a  b  s  r  t  i  s  5  j
f  d  t  y  d  r  s  9  s
w  s  y  s  u  c  k  8  f

总排后:

    A  B  C  D  E  F  G  H  I
    a  b  s  r  t  i  s  5  j
    f  d  t  y  d  r  s  9  s
    w  s  y  s  u  c  k  8  f
    na na na na na na na 22 na

2 个答案:

答案 0 :(得分:1)

假设您的数据存储在名为df:

的data.frame中
df <- read.table(text = 
    "A  B  C  D  E  F  G  H  I
    a  b  s  r  t  i  s  5  j
    f  d  t  y  d  r  s  9  s
    w  s  y  s  u  c  k  8  f", 
                 header = TRUE,
                 stringsAsFactors = FALSE)

您可以使用lapply

创建一行
totals <- lapply(df, function(col) {
  ifelse(!any(!is.numeric(col)), sum(col), NA)
})

并使用df

将其添加到rbind()
df <- rbind(df, totals)

head(df)
     A    B    C    D    E    F    G  H    I
1    a    b    s    r    t    i    s  5    j
2    f    d    t    y    d    r    s  9    s
3    w    s    y    s    u    c    k  8    f
4 <NA> <NA> <NA> <NA> <NA> <NA> <NA> 22 <NA>

答案 1 :(得分:0)

library(janitor)
adorn_totals(df, "row")

#>      A B C D E F G  H I
#>      a b s r t i s  5 j
#>      f d t y d r s  9 s
#>      w s y s u c k  8 f
#>  Total - - - - - - 22 -

如果您更喜欢在字符列中使用空格而不是-,则可以指定fill = ""fill = NA