gpt4 book ai didi

r - 如何在 R twitteR 更新中插入变量?

转载 作者:行者123 更新时间:2023-12-04 06:54:54 26 4
gpt4 key购买 nike

我在 R 中使用 twitteR 包来使用分析结果更新我的 Twitter 状态。静态推文功能有效:

library(twitteR)

sess = initSession('username','password')

tweet = tweet('I am a tweet', sess)

但是,当我添加一个变量来显示一些特定的结果时,我得到了一个错误。
library(twitteR)

sess = initSession('username','password')

res = c(3,5,8)
msg = cat('Results are: ', res, ', that is nice right?')

tweet = tweet(msg, sess)

结果是:
Error in twFromJSON(rawToChar(out)) : 
Error: Client must provide a 'status' parameter with a value.

任何建议表示赞赏。

最佳答案

这是我运行您的代码时得到的结果:

> res = c(3,5,8)
> msg = cat('Results are: ', res, ', that is nice right?')
Results are: 3 5 8 , that is nice right?>
> msg
NULL

问题是 cat将字符串打印到标准输出,而不是将它们作为字符串返回。你想要的是:
> res = c(3,5,8)
> msg = paste('Results are: ', toString(res), ', that is nice right?', sep='')
> msg
[1] "Results are: 3, 5, 8, that is nice right?"

关于r - 如何在 R twitteR 更新中插入变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2668938/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com