Although this response seems to be a bit relevant (using a package), I'm wondering how I can use R BASE to import a csv file using a shareable google drive link into R studio?
There are two columns in my csv file and two column names (namely "dd" and "yy"). But no row.names.
Presently, I'm trying the following R code (with no success):
myurl <- "https://drive.google.com/file/d/0B5V8AyEFBTmXM1VIYUYxSG5tSjQ/view?usp=sharing"
read.csv(url(myurl), header = T, row.names = F)
The error I'm getting is:
Error in read.table(file = file, header = header, sep = sep, quote = quote, :
more columns than column names