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 に答える