阅读Google云端硬盘上托管的csv文件

时间:2015-10-14 20:33:02

标签: r csv curl web

我正在尝试访问(读入R)Google云端硬盘上托管的.csv文件(不是云端硬盘电子表格) - 已将文件权限设置为“公开共享”#。

因此基于可共享的网址:

sURL <-"https://drive.google.com/file....view?pli=1"

我一直在尝试阅读:

library(curl)
x <- curl(sURL)
data <- read.csv(x)

我收到此错误消息:

Error in read.table(file = file, header = header, sep = sep, quote = quote,  : 
more columns than column names

知道投诉的内容吗?谢谢你们。

1 个答案:

答案 0 :(得分:12)

你可以这样试试

id <- "0B-wuZ2XMFIBUd09Ob0pKVkRzQTA" # google file ID
read.csv(sprintf("https://docs.google.com/uc?id=%s&export=download", id))