Learn R Programming

MixAll (version 1.4.2)

print,ClusterAlgo-method: Print a MixAll S4 class to standard output.

Description

Print a MixAll S4 class to standard output.

Usage

# S4 method for ClusterAlgo
print(x, ...)

# S4 method for ClusterAlgoPredict print(x, ...)

# S4 method for ClusterInit print(x, ...)

# S4 method for ClusterStrategy print(x, ...)

# S4 method for IClusterComponent print(x, ...)

# S4 method for IClusterModel print(x, ...)

# S4 method for ClusterCategoricalComponent print(x, k, ...)

# S4 method for ClusterCategorical print(x, ...)

# S4 method for ClusterDiagGaussianComponent print(x, k, ...)

# S4 method for ClusterDiagGaussian print(x, ...)

# S4 method for ClusterGammaComponent print(x, k, ...)

# S4 method for ClusterGamma print(x, ...)

# S4 method for ClusterMixedDataModel print(x, ...)

# S4 method for ClusterPoissonComponent print(x, k, ...)

# S4 method for ClusterPoisson print(x, ...)

# S4 method for IClusterPredict print(x, ...)

# S4 method for ClusterPredict print(x, ...)

# S4 method for ClusterPredictMixedData print(x, ...)

# S4 method for LearnAlgo print(x, ...)

# S4 method for KmmComponent print(x, k, ...)

# S4 method for KmmModel print(x, ...)

# S4 method for KmmMixedDataModel print(x, ...)

Arguments

x

a MixAll object: a '>ClusterStrategy, a '>ClusterInit or a '>ClusterAlgo.

...

further arguments passed to or from other methods

k

the number of the cluster to print

Value

NULL. Prints to standard out.

See Also

print

Examples

Run this code
# NOT RUN {
  ## for cluster strategy
  strategy <- clusterStrategy()
  print(strategy)
  ## for cluster init
  init <- clusterInit()
  print(init)
  ## for cluster algo
  algo <- clusterAlgo()
  print(algo)

# }

Run the code above in your browser using DataLab