데비안에 R Vennerable을 설치하는 방법은 무엇입니까?

데비안에 R Vennerable을 설치하는 방법은 무엇입니까?

2014년에는 이 주제에 대한 많은 스레드가 있었지만 그들의 제안은 R 3.3.1에서 작동하지 않습니다. 분명히 종속성이 충족되지 않았기 때문이지만 설치할 수도 없습니다.

install.packages("Vennerable", repos="http://R-Forge.R-project.org")

루트로 내보내기

> install.packages("Vennerable", repos="http://R-Forge.R-project.org")
Installing package into ‘/usr/local/lib/R/site-library’
(as ‘lib’ is unspecified)
Warning: dependencies ‘graph’, ‘RBGL’ are not available
trying URL 'http://R-Forge.R-project.org/src/contrib/Vennerable_3.0.tar.gz'
Content type 'application/x-gzip' length 1727552 bytes (1.6 MB)
==================================================
downloaded 1.6 MB

ERROR: dependencies ‘graph’, ‘RBGL’ are not available for package ‘Vennerable’
* removing ‘/usr/local/lib/R/site-library/Vennerable’

The downloaded source packages are in
    ‘/tmp/Rtmp9Ubsk3/downloaded_packages’
Warning message:
In install.packages("Vennerable", repos = "http://R-Forge.R-project.org") :
  installation of package ‘Vennerable’ had non-zero exit status

> install.packages("graph")
Installing package into ‘/usr/local/lib/R/site-library’
(as ‘lib’ is unspecified)
Warning message:
package ‘graph’ is not available (for R version 3.3.1) 

> install.packages("RBGL")
Installing package into ‘/usr/local/lib/R/site-library’
(as ‘lib’ is unspecified)
Warning message:
package ‘RBGL’ is not available (for R version 3.3.1) 

R: 3.3.1
OS: Debian 8.5
패키지 문서:여기

답변1

이 패키지는 Bioconductor 패키지 저장소에 있으며 다음은 저에게 효과적이었습니다 graph.RBGL

R> source("http://bioconductor.org/biocLite.R"); biocLite(c("graph", "RBGL"))
R> install.packages("reshape")
R> install.packages("Vennerable", repos="http://R-Forge.R-project.org")

관련 정보