display-methods {goCluster}R Documentation

Display a visualization module

Description

This method can be used on a goCluster-object. It will relay the call to the visualization sub-object of the goCluster-object. This will display the results prepared by the visualization classes.

Methods

object = "goCluster"
The method should only be called with a goCluster-object even though it is also defined for the visualization modules.

Author(s)

Gunnar Wrobel, http://www.gunnarwrobel.de.

See Also

clusterModule-class.

Examples


set.seed(1000)

data(benomylsetupsmall)

benomylsetupsmall$classalgo <- "clusterAlgorithmHclust"
benomylsetupsmall$algo$method   <- "complete"
benomylsetupsmall$algo$distance <- "euclidean"

benomylsetupsmall$classvisu <- "clusterVisualHclust"

a <- new("goCluster")

execute(a) <- benomylsetupsmall

if(interactive()){
## This example can only be run in an interactive mode

display(a, selection = 1)
}


[Package goCluster version 1.0.3 Index]