如何在 R v3.1.2 上安装多核包?
How to install multicore package on R v3.1.2?
我正在使用默认命令安装 multicore
包
install.packages('multicore','http://www.rforge.net/')
如此处所写 http://www.rforge.net/multicore/files/ 但我收到警告:
install.packages('multicore','http://www.rforge.net/')
Warning in install.packages :
'lib = "http://www.rforge.net/"' is not writable
Would you like to use a personal library instead? (y/n) y
Warning in install.packages :
package ‘multicore’ is not available (for R version 3.1.2)
有人知道解决这个问题的方法吗?我不能使用以前版本的 R。
我想使用那个包中的 mclapply
函数。
感谢您的帮助。
我的会话信息是:
> sessionInfo()
R version 3.1.2 (2014-10-31)
Platform: x86_64-redhat-linux-gnu (64-bit)
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
[3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
[5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
[7] LC_PAPER=en_US.UTF-8 LC_NAME=C
[9] LC_ADDRESS=C LC_TELEPHONE=C
[11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] stringi_0.4-1 ggplot2_1.0.0
loaded via a namespace (and not attached):
[1] colorspace_1.2-4 digest_0.6.8 grid_3.1.2 gtable_0.1.2
[5] MASS_7.3-35 munsell_0.4.2 plyr_1.8.1 proto_0.3-10
[9] Rcpp_0.11.3 reshape2_1.4.1 scales_0.2.4 stringr_0.6.2
[13] tools_3.1.2
为什么需要它?
它的大部分功能已经集成到 R 中已经附带的 parallel
包中。看看它的插图,例如从 R 中通过 vignette()
或 from here .
您无法安装 'multicore' 的原因是它已被 R Core 撤回,考虑到它现在在 'parallel' 中的功能(基本上完全)。
我正在使用默认命令安装 multicore
包
install.packages('multicore','http://www.rforge.net/')
如此处所写 http://www.rforge.net/multicore/files/ 但我收到警告:
install.packages('multicore','http://www.rforge.net/') Warning in install.packages : 'lib = "http://www.rforge.net/"' is not writable Would you like to use a personal library instead? (y/n) y Warning in install.packages : package ‘multicore’ is not available (for R version 3.1.2)
有人知道解决这个问题的方法吗?我不能使用以前版本的 R。
我想使用那个包中的 mclapply
函数。
感谢您的帮助。
我的会话信息是:
> sessionInfo()
R version 3.1.2 (2014-10-31)
Platform: x86_64-redhat-linux-gnu (64-bit)
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
[3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
[5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
[7] LC_PAPER=en_US.UTF-8 LC_NAME=C
[9] LC_ADDRESS=C LC_TELEPHONE=C
[11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] stringi_0.4-1 ggplot2_1.0.0
loaded via a namespace (and not attached):
[1] colorspace_1.2-4 digest_0.6.8 grid_3.1.2 gtable_0.1.2
[5] MASS_7.3-35 munsell_0.4.2 plyr_1.8.1 proto_0.3-10
[9] Rcpp_0.11.3 reshape2_1.4.1 scales_0.2.4 stringr_0.6.2
[13] tools_3.1.2
为什么需要它?
它的大部分功能已经集成到 R 中已经附带的 parallel
包中。看看它的插图,例如从 R 中通过 vignette()
或 from here .
您无法安装 'multicore' 的原因是它已被 R Core 撤回,考虑到它现在在 'parallel' 中的功能(基本上完全)。