我想在R中读取来自谷歌驱动器的数据集,如 屏幕截图所示.
也不
url <- "https://drive.google.com/file/d/1AiZda_1-2nwrxI8fLD0Y6e5rTg7aocv0"
temp <- tempfile()
download.file(url, temp)
bank <- read.table(unz(temp, "bank-additional.csv"))
unlink(temp)
Run Code Online (Sandbox Code Playgroud)
也不
library(RCurl)
bank_url <- dowload.file(url, "bank-additional.csv", method = 'curl')
Run Code Online (Sandbox Code Playgroud)
作品.
我一直在研究这个问题好几个小时.任何提示或解决方案都会非常感激.