I am trying to access (read into R) a .csv file hosted on Google Drive (NOT a Drive spreadsheet) -- having set file permission to 'publicly shareable'.
So based on the shareable URL:
sURL <-"https://drive.google.com/file....view?pli=1"
I have been trying to read in using:
library(curl)
x <- curl(sURL)
data <- read.csv(x)
I'm getting this error message:
Error in read.table(file = file, header = header, sep = sep, quote = quote, :
more columns than column names
Any idea what the complaint is about? Thanks guys.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…