I want to use EBImage package but it says it is not available for my version of R

谁都会走 提交于 2019-12-10 14:11:22

问题


Warning in install.packages : package ‘EBImage’ is not available (for R version 3.2.4 Revised)

what to do now any help,please guide me.


回答1:


Install the latest release of R, then get the latest version of Bioconductor by starting R and entering the commands

install.packages("BiocManager") 
BiocManager::install("EBImage")
library(EBImage)

Install specific packages, e.g., “GenomicFeatures” and “AnnotationDbi”, with

BiocManager::install(c("GenomicFeatures", "AnnotationDbi"))



回答2:


EBImage is distributed as part of the Bioconductor project. To install the package use

source("http://bioconductor.org/biocLite.R")
biocLite("EBImage")


来源:https://stackoverflow.com/questions/37222603/i-want-to-use-ebimage-package-but-it-says-it-is-not-available-for-my-version-of

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!