17

我正在尝试使用以下语法从 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)         } )  
4

2 回答 2

29

正如@gsee 提到的,您需要在检查它的值之前检查它symbol不是。NULL这是您的代码的一个小更新(至少对 George 而言)。

df = ldply(
  links, 
  function(x) 
  {
    text = xmlValue(x)
    if (!nzchar(text)) text = NULL
    symbol = xmlGetAttr(x, 'class')
    if (!is.null(symbol) && symbol != 'role') symbol = NULL
    if(!is.null(text) & !is.null(symbol))
      data.frame(symbol, text)         
  } 
)
于 2012-07-02T17:44:55.207 回答
0

用作您想要col.names = my_column_names的名称kable()my_column_names字符向量,对我来说它有效!

于 2017-12-05T11:50:53.133 回答