我正在尝试使用 Google 趋势数据,并且遇到了一些不在 CRAN 上的软件包(GTrends,RGoogleTrends)。
我喜欢我从这个博客的 RGoogleTrends 包中看到的内容,并想尝试一下。RGoogleTrends 包位于:http ://www.omegahat.org/RGoogleTrends/
首先,我使用的是 Windows 操作系统,并且我的 R 控制台中有一个 uption:
>Packages>Install package(s) from local zip drives ...
这导致以下结果:
> utils:::menuInstallLocal()
Error in read.dcf(file.path(pkgname, "DESCRIPTION"), c("Package", "Type")) :
cannot open the connection
In addition: Warning messages:
1: In unzip(zipname, exdir = dest) : error 1 in extracting from zip file
2: In read.dcf(file.path(pkgname, "DESCRIPTION"), c("Package", "Type")) :
cannot open compressed file 'RGoogleTrends_0.2-1.tar.gz/DESCRIPTION', probable reason 'No such file or directory'
我猜这与文件作为文件.gz
而不是.zip
文件的事实有关。
因此,我将.gz
文件解压缩到 R 之外,然后将其压缩到一个.zip
文件中(必须有更好的方法)。现在我可以安装该.zip
文件,但是当我尝试使用 加载它时library
,会出现以下错误:
> library(RGoogleTrends)
Error in library(RGoogleTrends) :
‘RGoogleTrends’ is not a valid installed package
我在这里做错了什么?