1
我想讀位於本網站爲R的數據和文本分析的信息:讀取HTML代碼爲R的數據和文本挖掘
http://www.nhl.com/scores/htmlreports/20142015/PL020916.HTM
我曾嘗試使用閱讀源代碼成R下面的包和代碼:
library(XML)
theurl <- "http://www.nhl.com/scores/htmlreports/20142015/PL020916.HTM"
tables <- readHTMLTable(theurl)
con = url("http://www.nhl.com/scores/htmlreports/20142015/PL020916.HTM")
htmlCode=readLines(con)
close(con)
htmlCode
我要尋找的輸出是提供的信息的平面文件。
我不使用R,但今天看到了一些關於這一點的信息,這可能是你要找的東西:https://github.com/hadley/rvest – nvioli 2015-03-02 21:28:19