2

我正在尝试使用 XML 命令读取 HTML 表readHTMLTable。它是有关 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 版本。

有谁知道可能是什么问题?

谢谢

4

1 回答 1

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)
于 2015-03-05T15:26:40.570 回答