R readHTMLTable:加载外部实体时出错

时间:2013-01-31 15:14:43

标签: r

我正在尝试使用XML命令readHTMLTable读取HTML表。它是有关Eurex页面中选项的信息。当我运行代码时:

info<-readHTMLTable("http://www.eurexchange.com/action/exchange-en/155392-31606/31608/quotesSingleViewOption.do?callPut=Call&maturityDate=201312",which=1)

我收到此错误消息:

Error: failed to load external entity "http://www.eurexchange.com/action/exchange-en/155392-31606/31608/quotesSingleViewOption.do?callPut=Call&maturityDate=201312"

我安装了正确的软件包和最后的r版本。

有人知道可能是什么问题吗?

谢谢

1 个答案:

答案 0 :(得分:0)

使用包httr的函数GET来检索html内容:

info<-readHTMLTable(rawToChar(GET("http://www.eurexchange.com/action/exchange-en/155392-31606/31608/quotesSingleViewOption.do?callPut=Call&maturityDate=201312")$content),which=1)