| setup-methods {goCluster} | R Documentation |
The method will return the configuration of a
goCluster-object as a list. In case the object contains
an element of another goCluster-class, the setup-call
will be passed to it. The list of parameters returned by this
subobject will be embedded as an element in the list of parameters of
the parent object.
clusterModule-class. But it is available for any
goCluster-object since all classes made available by the
goCluster-package extend the basic
clusterModule-class.
Gunnar Wrobel, work@gunnarwrobel.de, http://www.gunnarwrobel.de.
## Load a small test dataset
data(benomylsetupsmall)
## This shows the configuration of the significance analysis
benomylsetupsmall$sign
## Create an emty goCluster object
test <- new("goCluster")
## Calling setup<- in order to pass the configuration
## to the new goCluster object
setup(test) <- benomylsetupsmall
## Using setup to retrieve part of the configuration
setup(test@sign)