pander在gmailR中没有工作

时间:2016-03-08 15:05:00

标签: r gmail-api pander

我已经设置了gmailR来通过电子邮件分享数据框。我收到了以下错误。请帮忙

email <- send_message(mime(from="xxxx@yyyy.com", to="xxxx@yyyy.com",
                          subject="Text Email Testing", body = pander_return(pander(head(iris, 3)))))

Auto-refreshing stale OAuth token.
Warning message:
In charToRaw(x) : argument should be a character vector of length 1
all but the first element will be ignored

1 个答案:

答案 0 :(得分:2)

尝试

paste(pander_return(pander(head(iris, 3))), collapse="\n")

length(pander_return(pander(head(iris, 3))))24,但该函数似乎需要一个长度为1的字符向量。 paste使用换行符\n作为分隔符将其连接起来。