我参考了下面给出的用于进行情绪分析的链接 http://heuristically.wordpress.com/2011/04/08/text-data-mining-twitter-r/
当我运行下面给出的代码时:`for(c(1:15)中的页面){ #search参数 twitter_q< - URLencode(' #prolife或#prochoice') twitter_url =
# fetch remote URL and parse
mydata.xml <- xmlParseDoc(twitter_url, asText=F)
# extract the titles
mydata.vector <- xpathSApply(mydata.xml, '//s:entry/s:title', xmlValue, namespaces =c('s'='http://www.w3.org/2005/Atom'))
# aggregate new tweets with previous tweets
mydata.vectors <- c(mydata.vector, mydata.vectors)
}
运行代码后,它会提示我输入错误 错误:UseMethod中出错(&#34; xpathApply&#34;): 没有适用于&#39; xpathApply&#39;的方法应用于类的对象&#34; NULL&#34; I / O警告:无法加载HTTP资源
我安装了Roath,stringr,XML,plyr包,这是必需的。我正在使用R Ver 3.0.3
请帮我解释如何去做。我正在努力争取这个。如果有人在正确的方向上正确引导我,那将是一个很大的帮助。