我无法下载R中的reshape2软件包
试图安装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(内部版本9200)
您调用的函数不用于下载软件包 。
installed.packaged
返回有关R可用包的信息。第一个参数定义函数将要查找包的位置。 除非在当前工作目录中有包含一些有效包的reshape2
目录,否则函数将不会返回任何内容。
如果你想下载和安装包,使用install.packages
:
install.packages("reshape2")
如果你想下载包(但不能安装它),请使用download.packages
。
上一篇: I am unable to download the reshape2 package in R
下一篇: unexpected subsetting behavior after gathering with tidyr