Learn R Programming

rtkpp (version 0.8.5)

show,ClusterAlgo-method: Show description of a rtkpp class to standard output.

Description

Show description of a rtkpp class to standard output.

Usage

## S3 method for class 'ClusterAlgo':
show(object)

## S3 method for class 'ClusterCategoricalComponent': show(object)

## S3 method for class 'ClusterCategorical': show(object)

## S3 method for class 'ClusterDiagGaussianComponent': show(object)

## S3 method for class 'ClusterDiagGaussian': show(object)

## S3 method for class 'ClusterGammaComponent': show(object)

## S3 method for class 'ClusterGamma': show(object)

## S3 method for class 'ClusterHeterogeneous': show(object)

## S3 method for class 'ClusterInit': show(object)

## S3 method for class 'ClusterPoissonComponent': show(object)

## S3 method for class 'ClusterPoisson': show(object)

## S3 method for class 'ClusterStrategy': show(object)

## S3 method for class 'IClusterModelBase': show(object)

## S3 method for class 'IClusterComponent': show(object)

Arguments

object
a rtkpp object: a ClusterStrategy, a ClusterInit or a ClusterAlgo.

Value

  • NULL. Prints to standard out.

See Also

show

Examples

Run this code
## for strategy
  strategy <- clusterStrategy()
  show(strategy)
  ## for cluster init
  init <- clusterInit()
  show(init)
  ## for cluster algo
  algo <- clusterAlgo()
  show(algo)

Run the code above in your browser using DataLab