R Bud
R Bud

Reputation: 281

Trying to install RGoogleDocs package?

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

Answers (1)

Just2HelpU
Just2HelpU

Reputation: 11

Just need to run the 4 lines below:

install.packages('devtools')
library(devtools)
install_github("RGoogleDocs", "duncantl")
library(RGoogleDocs)

Upvotes: 1

Related Questions