setup-methods {goCluster}R Documentation

Returns the setup of a goCluster-module

Description

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.

Methods

object = "clusterModule"
The method is only defined for the clusterModule-class. But it is available for any goCluster-object since all classes made available by the goCluster-package extend the basic clusterModule-class.

Author(s)

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

Examples


## 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)


[Package goCluster version 1.4.0 Index]