在 R 中下载 Kaggle zip 文件

Downloading Kaggle zip files in R

我正在尝试直接从我的 R 代码中的 Kaggle space 下载 zip 文件。不幸的是,结果并不理想。这是正在发生的事情:

旧金山犯罪数据集 https://www.kaggle.com/c/sf-crime/data

取第一个数据集:test.csv.zip: https://www.kaggle.com/c/sf-crime/download/test.csv.zip

我正在使用 R 代码:

download.file(url='https://www.kaggle.com/c/sf-crime/download/test.csv.zip', destfile = 'test.zip',method = 'curl')

代替原来的 18.75MB 文件,R 只下载了一个 183 字节的文件。

会话输出:

% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0100   183  100   183    0     0    665      0 --:--:-- --:--:-- --:--:--   667

我做错了什么?

提前致谢, 拉胡尔

library(RCurl)

#Set your browsing links 
loginurl = "https://www.kaggle.com/account/login"
dataurl  = "https://www.kaggle.com/c/titanic/download/train.csv"

#Set user account data and agent
pars=list(
  UserName="suiwenfeng@live.cn",
  Password="-----"
)
agent="Mozilla/5.0" #or whatever 

#Set RCurl pars
curl = getCurlHandle()
curlSetOpt(cookiejar="cookies.txt",  useragent = agent, followlocation = TRUE, curl=curl)
#Also if you do not need to read the cookies. 
#curlSetOpt(  cookiejar="", useragent = agent, followlocation = TRUE, curl=curl)

#Post login form
welcome=postForm(loginurl, .params = pars, curl=curl)

bdown=function(url, file, curl){
  f = CFILE(file, mode="wb")
  curlPerform(url = url, writedata = f@ref, noprogress=FALSE, curl = curl)
  close(f)
}

ret = bdown(dataurl, "c:\test.csv",curl)

rm(curl)
gc()

仅供参考:像网络客户端一样使用 RCurl。