我无法在R中下载reshape2包

时间:2015-12-26 16:43:05

标签: r package install 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(build 9200)

1 个答案:

答案 0 :(得分:33)

您所谓的功能不用于下载软件包

installed.packages返回有关R可用包的信息。第一个参数定义函数将查找包的位置。除非当前工作目录中的reshape2目录恰好包含一些有效的包,否则该函数将不返回任何内容。

如果您想下载并安装套餐,请使用install.packages

install.packages("reshape2")

如果您想要下载包(但不要安装),请使用download.packages