虽然this response似乎有点相关(使用包),但我想知道如何使用 R BASE 导入 csv文件使用可共享的谷歌驱动器链接进入R studio?
我的csv文件中有两列,两列名称(即“dd”和“yy”)。但没有row.names。
目前,我正在尝试跟随R代码(没有成功):
myurl <- "https://drive.google.com/file/d/0B5V8AyEFBTmXM1VIYUYxSG5tSjQ/view?usp=sharing"
read.csv(url(myurl), header = T, row.names = F)
我得到的错误是:
Error in read.table(file = file, header = header, sep = sep, quote = quote, :
more columns than column names
答案 0 :(得分:3)
答案显示在您关联的帖子中。即,
id <- "0B5V8AyEFBTmXM1VIYUYxSG5tSjQ"
stuff <- read.csv(sprintf("https://docs.google.com/uc?id=%s&export=download", id))