我建立了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发布于 2016-03-08 15:06:42
试一试
paste(pander_return(pander(head(iris, 3))), collapse="\n")length(pander_return(pander(head(iris, 3))))是24,但是函数似乎需要长度1的字符向量。paste将其连接起来,使用行中断\n作为分隔符。
https://stackoverflow.com/questions/35870876
复制相似问题