Learn R Programming

Mfuzz (version 2.32.0)

acore: Extraction of alpha cores for soft clusters

Description

This function extracts genes forming the alpha cores of soft clusters

Usage

acore(eset,cl,min.acore=0.5)

Arguments

eset
object of the class ExpressionSet.
cl
An object of class flcust as produced by mfuzz.
min.acore
minimum membership values of gene belonging to the cluster core.

Value

their membership values for the corresponding cluster.

Examples

Run this code
if (interactive()){
### Data loaing and pre-processing
 data(yeast) # data set includes 17 measurements
 yeastF <- filter.NA(yeast) 
 yeastF <- fill.NA(yeastF)
 yeastF <- standardise(yeastF)

### Soft clustering and visualisation
cl <- mfuzz(yeastF,c=20,m=1.25)
acore.list <- acore(yeastF,cl=cl,min.acore=0.7)
 }

Run the code above in your browser using DataLab