迎合在 gmailR 中不起作用
pander not working in gmailR
我已将 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
尝试
paste(pander_return(pander(head(iris, 3))), collapse="\n")
length(pander_return(pander(head(iris, 3))))
是 24
,但该函数似乎需要一个长度为 1
的字符向量。 paste
连接它,使用换行符 \n
作为分隔符。
我已将 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
尝试
paste(pander_return(pander(head(iris, 3))), collapse="\n")
length(pander_return(pander(head(iris, 3))))
是 24
,但该函数似乎需要一个长度为 1
的字符向量。 paste
连接它,使用换行符 \n
作为分隔符。