Reputation: 281
I am trying to download and also upload files to a shared folder on Google Drive using R. As a first step I am trying to install the package RGoogleDocs
. Here is my R command to install the package:
install.packages("RGoogleDocs", repos = "http://www.omegahat.org/R", type="source")
I am getting this error:
'unable to access index for repository'
'cannot open URL'
Is this the right repository URL that I am using to install RGoogleDocs
package?
Upvotes: 0
Views: 1191
Reputation: 11
Just need to run the 4 lines below:
install.packages('devtools')
library(devtools)
install_github("RGoogleDocs", "duncantl")
library(RGoogleDocs)
Upvotes: 1