readLines在RStudio中刮取网站运行,而不是在R中

时间:2014-11-26 02:52:32

标签: r rstudio

此行在RStudio中运行:

a <- readLines("https://www.colorado.gov/pacific/enforcement/med-licensed-facilities")

但它不会在R中运行。

R说:

Error in file(con, "r") : cannot open the connection
In addition: Warning message:
In file(con, "r") : unsupported URL scheme

我需要这个以批处理模式运行,这就是我在R中需要它的原因。它曾经运行良好,但我已经升级了我的电脑,R现在是64位,而且它没有工作

我认为这可能是http vs https问题,因为:

readLines("http://www.r-project.org/")

适用于两者,但是:

readLines("https://www.google.com/?gws_rd=ssl")  

同样适用于R和RStudio。

0 个答案:

没有答案