我在尝试安装R包时收到此响应:
>installed.packages("reshape2") Package LibPath Version Priority Depends Imports LinkingTo Suggests Enhances License License_is_FOSS License_restricts_use OS_type Archs MD5sum NeedsCompilation Built
R版本3.2.2(2015-08-14)平台:x86_64-w64-mingw32/x64(64位)运行于:Windows 8 x64(build 9200)
您调用的函数不用于下载包.
installed.packages
返回有关可用于R的包的信息.第一个参数定义函数将查找包的位置.除非reshape2
当前工作目录中的目录恰好包含一些有效的包,否则该函数将不返回任何内容.
如果要下载和安装包,请使用install.packages
:
install.packages("reshape2")
如果要下载包(但不要安装它),请使用download.packages
.