我在下面运行以下代码下载数据时收到此错误
函数错误(类型,msg,asError = TRUE):无法连接到course1.winona.edu端口80:超时
任何帮助将不胜感激
我的代码
library(RCurl)
urlfile <-'http://course1.winona.edu/bdeppa/Stat%20425/Data/Boston_Housing.csv'
downloaded <- getURL(urlfile, ssl.verifypeer=FALSE)
connection <- textConnection(downloaded)
dataset <- read.csv(connection, header=FALSE)
答案 0 :(得分:0)
我认为您不需要read.csv
以外的任何东西。这对我有用:
urlfile <-'http://course1.winona.edu/bdeppa/Stat%20425/Data/Boston_Housing.csv'
dataset <- read.csv(urlfile)