This is a test version of Biostars. For the public version, visit https://www.biostars.org.
How To Import The Local Eset.R File To R?

I've download the eset.r file from ArrayExpress database, but how can I import the eSet.R file to R/BioConductor? The package 'ArrayExpress' package can download dataset from arrayexpress, but how to deal with the local eSet.r? Thank you.

r

you mean how to import a locally saved R-file into your R-environment?

source("eSet.R ?")

So is it eset.r, eSet.R or eSet.r? You have used all 3. You also need to explain what is contained in that file. If it's R code, you use source(). If it's R data, you use load().

1 answer

You can load a local eSet.r using

load("eSet.r")

Log in to answer this question.