Reputation: 25326
I am trying:
install.packages("RGoogleDocs", repos = "http://www.omegahat.org/R")
As suggested here, but it doesn't work.
I ended up manually downloading the file from here.
What other ways are there for me to get to the file directly?
Thanks, Tal
Upvotes: 4
Views: 760
Reputation: 100164
As Marek says, there doesn't appear to be a version for R 2.10: http://www.omegahat.org/R/bin/windows/contrib/2.10/. This command works for me in R 2.9, but not in R 2.10:
install.packages("RGoogleDocs", repos = "http://www.omegahat.org/R", type="source")
Upvotes: 4