我正在尝试使用以下语法从 George Clooney 的维基百科页面获取职业信息。最终,我希望有一个循环来获取有关各种个性职业的数据。
但是,运行以下代码时出现以下问题:
Error in if (symbol != "role") symbol = NULL : argument is of length zero
我不确定为什么这种情况不断出现。
library(XML)
library(plyr)
url = 'http://en.wikipedia.org/wiki/George_Clooney'
# don't forget to parse the HTML, doh!
doc = htmlParse(url)
# get every link in a table cell:
links = getNodeSet(doc, '//table/tr/td')
# make a data.frame for each node with non-blank text, link, and 'title' attribute:
df = ldply(links, function(x) {
text = xmlValue(x)
if (text=='') text=NULL
symbol = xmlGetAttr(x, 'class')
if (symbol!='role') symbol=NULL
if(!is.null(text) & !is.null(symbol))
data.frame(symbol, text) } )