2015-09-09 111 views
0

我试图安装该软件包,而我得到这样的警告消息安装biomaRt包

install.packages("biomaRt", repo="http://r-forge.r-project.org") 
install.packages("biomaRt", type="source") 
library("biomaRt”) 

    package ‘biomaRt’ is not available (for R version 3.2.2) 
Warning in install.packages : 
    cannot open: HTTP status was '404 Not Found' 
Warning in install.packages : 
    cannot open: HTTP status was '404 Not Found' 
Warning in install.packages : 
    unable to access index for repository http://r-forge.r-project.org/bin/macosx/mavericks/contrib/3.2 

你能帮帮我吗?由于

回答

3

看出:

source("https://bioconductor.org/biocLite.R") 
biocLite("biomaRt") 
library("biomaRt") 
+0

感谢增加 –