0
4

1 回答 1

8

Whilst it may not be available via install.package('RGoogleTrends', repos = "http://www.omegahat.org/R", type = "source"), you can download the package tar file http://www.omegahat.org/RGoogleTrends/RGoogleTrends_0.2-1.tar.gz and install from the downloaded file, something like

install.packages("~/Downloads/RGoogleTrends_0.2-1.tar.gz", repos = NULL, type = "source")

replacing the path with the path on your system.

Note that RGoogleTrends imports the packages

RCurl, RSQLite, DBI

You may need to separately install these packages (with repos set to an appropriate non NULL value)

于 2012-12-17T03:20:45.087 回答