在R中安装arules的软件包

时间:2014-02-28 07:24:07

标签: r arules market-basket-analysis

我在上一篇文章中遇到了与其他用户How to upload arules package in R

相同的问题

我正在使用R版本3.0.2(32位)

错误信息如下:

> install.packages("arules")
Installing package into ‘C:/Users/HKGGAIT001/Documents/R/win-library/3.0’
(as ‘lib’ is unspecified)
trying URL 'http://cran.ms.unimelb.edu.au/bin/windows/contrib/3.0/arules_1.1-1.zip'
Error in download.file(url, destfile, method, mode = "wb", ...) : 
  cannot open URL 'http://cran.ms.unimelb.edu.au/bin/windows/contrib/3.0/arules_1.1-1.zip'
In addition: Warning message:
In download.file(url, destfile, method, mode = "wb", ...) :
  cannot open: HTTP status was '404 Not Found'
Warning in download.packages(pkgs, destdir = tmpd, available = available,  :
  download of package ‘arules’ failed

这是否意味着包裹不再可用?另外,还有其他市场购物篮分析套餐吗?

非常感谢!

3 个答案:

答案 0 :(得分:5)

如果你想安装" arules"包,您可能无法使用下面的代码安装它。

<<  install.packages("arules")  >>

按照以下步骤操作:

  1. 转到包裹的地址并手动下载。您可以在以下链接中找到它:

    https://cran.r-project.org/web/packages/arules/index.html

  2. 如果您正在使用R-Studio,只需按照&#34;工具&#34;安装您所拥有的软件包。 IDE中的菜单(R-studio)

    工具 - &gt;安装包 - &gt; ...

    浏览计算机中的文件并进行安装。

  3. 转到命令行并使用库(arules)函数测试包。如果仍然存在错误,则可能属于软件包与R版本(不是R-Studio或您正在使用的任何其他IDE)的不兼容性,只需升级R并再次尝试安装期。

答案 1 :(得分:0)

该存储库没有它。您应该使用更完整的存储库。

http://cran.r-project.org/web/packages/

答案 2 :(得分:0)

我通过更新R本身解决了该问题。我正在运行版本3.2,并使用以下https://www.biostars.org/p/88651/格式的命令将其升级到3.4。

sudo su

echo "deb http://www.stats.bris.ac.uk/R/bin/linux/ubuntu precise/" >> /etc/apt/sources.list

apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9

apt-get update

apt-get upgrade

之后,我可以通过先从

下载arules来手动安装arules软件包。

https://cran.r-project.org/web/packages/arules/index.html