| display-methods {goCluster} | R Documentation |
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.
goCluster-object even though it is also defined for the
visualization modules.Gunnar Wrobel, work@gunnarwrobel.de, http://www.gunnarwrobel.de.
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)
}