Learn R Programming

Mfuzz (version 2.32.0)

standardise: Standardization of microarray data for clustering.

Description

Standardisation of the expression values of every gene is performed, so that the average expression value for each gene is zero and the standard deviation is one.

Usage

standardise(eset)

Arguments

eset
object of the classe ExpressionSet.

Value

standardised expression values.

Examples

Run this code
if (interactive()){
data(yeast)
# Data pre-processing
yeastF <- filter.NA(yeast)
yeastF <- fill.NA(yeastF)
yeastF <- standardise(yeastF)

# Soft clustering and visualisation
cl <- mfuzz(yeastF,c=20,m=1.25)
mfuzz.plot(yeastF,cl=cl,mfrow=c(4,5))
}

Run the code above in your browser using DataLab