BlusterParam-class {bluster} | R Documentation |
The BlusterParam class is a virtual base class controlling S4 dispatch in clusterRows
and friends.
Concrete subclasses specify the choice of clustering algorithm,
while the slots of an instance of such a subclass represent the parameters for that algorithm.
In the following code snippets, x
is a BlusterParam object or one of its subclasses.
x[[i]]
will return the value of the parameter i
.
Refer to the documentation for each concrete subclass for more details on the available parameters.
x[[i]] <- value
will set the value of the parameter i
to value
.
show(x)
will print some information about the class instance.
Aaron Lun
HclustParam, KmeansParam and NNGraphParam for some examples of concrete subclasses.