print,ClusterAlgo-method {MixAll} | R Documentation |
Print a MixAll S4 class to standard output.
Description
Print a MixAll S4 class to standard output.
Usage
## S4 method for signature 'ClusterAlgo'
print(x, ...)
## S4 method for signature 'ClusterAlgoPredict'
print(x, ...)
## S4 method for signature 'ClusterInit'
print(x, ...)
## S4 method for signature 'ClusterStrategy'
print(x, ...)
## S4 method for signature 'IClusterComponent'
print(x, ...)
## S4 method for signature 'IClusterModel'
print(x, ...)
## S4 method for signature 'ClusterCategoricalComponent'
print(x, k, ...)
## S4 method for signature 'ClusterCategorical'
print(x, ...)
## S4 method for signature 'ClusterDiagGaussianComponent'
print(x, k, ...)
## S4 method for signature 'ClusterDiagGaussian'
print(x, ...)
## S4 method for signature 'ClusterGammaComponent'
print(x, k, ...)
## S4 method for signature 'ClusterGamma'
print(x, ...)
## S4 method for signature 'ClusterMixedDataModel'
print(x, ...)
## S4 method for signature 'ClusterPoissonComponent'
print(x, k, ...)
## S4 method for signature 'ClusterPoisson'
print(x, ...)
## S4 method for signature 'IClusterPredict'
print(x, ...)
## S4 method for signature 'ClusterPredict'
print(x, ...)
## S4 method for signature 'ClusterPredictMixedData'
print(x, ...)
## S4 method for signature 'LearnAlgo'
print(x, ...)
## S4 method for signature 'KmmComponent'
print(x, k, ...)
## S4 method for signature 'KmmModel'
print(x, ...)
## S4 method for signature 'KmmMixedDataModel'
print(x, ...)
Arguments
x |
a MixAll object: a |
... |
further arguments passed to or from other methods |
k |
the number of the cluster to print |
Value
NULL. Prints to standard out.
See Also
Examples
## for cluster strategy
strategy <- clusterStrategy()
print(strategy)
## for cluster init
init <- clusterInit()
print(init)
## for cluster algo
algo <- clusterAlgo()
print(algo)
[Package MixAll version 1.5.16 Index]