我想下載從財政部網站上的10年期聯邦債券孳息:https://www.treasury.gov/resource-center/data-chart-center/interest-rates/Pages/TextView.aspx?data=yield刮聯邦債收益率表從財政部網站
要分析上面的網頁,獲取最新的10年期國債收益率,我曾經跟隨這裏提供的說明: Parsing 10-year federal note yield from the website
library(httr)
URL = "https://www.treasury.gov/resource-center/data-chart-center/interest-rates/Pages/TextView.aspx?data=yield"
urldata <- GET(URL)
data <- readHTMLTable(rawToChar(urldata$content),
stringsAsFactors = FALSE)
data <- as.data.frame((data[69]))
names(data) <- gsub("NULL.","", names(data)) # Take out "NULL."
但它不再起作用。
任何思考什麼可能是錯誤的或其他建議?
我無法訪問網站,它說「發生了意外錯誤」。如果你有同樣的問題,你將無法從中提取數據。 –
@FernandoIrarrázavalG我可以訪問它,這裏是公正的情況下直接鏈接 –
Oposum
也沒有工作,這是我得到:https://snag.gy/tQl2ya.jpg –