我的第一个问题,所以这里。我刚刚更新到 OSX El Capitan 10.11.4,它似乎破坏了我出色的 weatherData 包。weatherData 本质上构建了一个 http url 来从 Wunderground 获取数据,这就是问题所在。总之,
a <- read.csv("http://www.wunderground.com/history/airport/LHR/2011/4/15/DailyHistory.html?format=1")
给出错误:文件错误(文件,“rt”):无法打开连接
用 https 替换 http 并且 url 有效,即
a <- read.csv("https://www.wunderground.com/history/airport/LHR/2011/4/15/DailyHistory.html?format=1")
我正在使用革命 R 3.2.3、OSX 10.11.4。
http 在 Windows 中仍然有效,因此 weatherData 不受影响。
有没有人经历过类似的事情?
谢谢!!