Learn R Programming

Patterns (version 1.1)

clustInference: A function to explore a dataset and cluster its rows.

Description

Based on soft clustering performed by the Mfuzz package.

Usage

clustInference(microarray, vote.index, ...)

Arguments

microarray

A microarray to cluster

vote.index

Option for cluster attribution

Optional arguments:

new.window

Boolean. New X11 window for plots. Defaults to FALSE.

Value

A list of two elements:

res.matrix

A data.frame of nrows(microarray) observations of 3 variables (name, cluster, maj.vote.index).

prop.matrix

Additionnal info.

Examples

Run this code
# NOT RUN {
library(Patterns)
if(require(CascadeData)){
data(micro_S, package="CascadeData")
D<-Patterns::as.micro_array(micro_S[1:20,],1:4,6)
b<-Patterns::clustInference(D,0.5)
b
}
# }

Run the code above in your browser using DataLab