Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.

like image 754
Varun Singh Avatar asked May 14 '16 04:05

Varun Singh


2 Answers

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

source("http://bioconductor.org/biocLite.R")
biocLite("EBImage")
like image 126
aoles Avatar answered Oct 01 '22 05:10

aoles


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"))
like image 38
Adarsh Pawar Avatar answered Oct 01 '22 04:10

Adarsh Pawar