initialize-methods: Initialize an instance of a MixAll S4 class.

Description Usage

Description

Initialization method of the [ClusterAlgo] class. Used internally in the ‘MixAll’ package.

Initialization method of the [ClusterAlgoPredict] class. Used internally in the ‘MixAll’ package.

Initialization method of the [ClusterInit] class. Used internally in the 'MixAll' package.

Initialization method of the [ClusterStrategy] class. Used internally in the 'MixAll' package.

Initialization method of the [IClusterComponent] class. Used internally in the 'MixAll' package.

Initialization method of the [IClusterModel] class. Used internally in the 'MixAll' package.

Initialization method of the [ClusterCategoricalComponent] class. Used internally in the ‘MixAll’ package.

Initialization method of the [ClusterCategorical] class. Used internally in the ‘MixAll’ package.

Initialization method of the [ClusterDiagGaussianComponent] class. Used internally in the 'MixAll' package.

Initialization method of the [ClusterDiagGaussian] class. Used internally in the 'MixAll' package.

Initialization method of the [ClusterGammaComponent] class. Used internally in the 'MixAll' package.

Initialization method of the [ClusterGamma] class. Used internally in the 'MixAll' package.

Initialization method of the [ClusterMixedDataModel] class. Used internally in the 'MixAll' package.

Initialization method of the [ClusterPoissonComponent] class. Used internally in the 'MixAll' package.

Initialization method of the [ClusterPoisson] class. Used internally in the 'MixAll' package.

Initialization method of the [IClusterPredict] class. Used internally in the 'MixAll' package.

Initialization method of the [ClusterPredict] class. Used internally in the 'MixAll' package.

Initialization method of the [ClusterPredictMixedData] class. Used internally in the 'MixAll' package.

Initialization method of the [LearnAlgo] class. Used internally in the ‘MixAll’ package.

Initialization method of the [KmmComponent] class. Used internally in the 'MixAll' package.

Initialization method of the [KmmModel] class. Used internally in the 'MixAll' package.

Initialization method of the [KmmMixedDataModel] class. Used internally in the 'MixAll' package.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
## S4 method for signature 'ClusterAlgo'
initialize(.Object, algo, nbIteration, epsilon)

## S4 method for signature 'ClusterAlgoPredict'
initialize(.Object, algo, nbIterBurn,
  nbIterLong, epsilon)

## S4 method for signature 'ClusterInit'
initialize(.Object, method = "class",
  nbInit = 5, algo = clusterAlgo("EM", 20, 0))

## S4 method for signature 'ClusterStrategy'
initialize(.Object, nbTry, nbShortRun,
  initMethod, shortAlgo, longAlgo)

## S4 method for signature 'IClusterComponent'
initialize(.Object, data, modelName)

## S4 method for signature 'IClusterModel'
initialize(.Object, nbSample, nbCluster)

## S4 method for signature 'ClusterCategoricalComponent'
initialize(.Object,
  data = matrix(nrow = 0, ncol = 0), nbCluster = 2,
  modelName = "categorical_pk_pjk")

## S4 method for signature 'ClusterCategorical'
initialize(.Object, data = matrix(nrow =
  0, ncol = 0), nbCluster = 2, modelName = "categorical_pk_pjk")

## S4 method for signature 'ClusterDiagGaussianComponent'
initialize(.Object,
  data = matrix(nrow = 0, ncol = 0), nbCluster = 2,
  modelName = "gaussian_pk_sjk")

## S4 method for signature 'ClusterDiagGaussian'
initialize(.Object, data = matrix(nrow =
  0, ncol = 0), nbCluster = 2, modelName = "gaussian_pk_sjk")

## S4 method for signature 'ClusterGammaComponent'
initialize(.Object, data = matrix(nrow
  = 0, ncol = 0), nbCluster = 2, modelName = "gamma_pk_ajk_bjk")

## S4 method for signature 'ClusterGamma'
initialize(.Object, data = matrix(nrow = 0, ncol
  = 0), nbCluster = 2, modelName = "gamma_pk_ajk_bjk")

## S4 method for signature 'ClusterMixedDataModel'
initialize(.Object, lcomponent,
  nbCluster = 2)

## S4 method for signature 'ClusterPoissonComponent'
initialize(.Object,
  data = matrix(nrow = 0, ncol = 0), nbCluster = 2,
  modelName = "poisson_pk_ljk")

## S4 method for signature 'ClusterPoisson'
initialize(.Object, data = matrix(nrow = 0,
  ncol = 0), nbCluster = 2, modelName = "poisson_pk_ljk")

## S4 method for signature 'IClusterPredict'
initialize(.Object, nbSample, model, algo)

## S4 method for signature 'ClusterPredict'
initialize(.Object, data, model,
  algo = clusterAlgoPredict())

## S4 method for signature 'ClusterPredictMixedData'
initialize(.Object, ldata, model,
  algo = clusterAlgoPredict())

## S4 method for signature 'LearnAlgo'
initialize(.Object, algo, nbIteration, epsilon)

## S4 method for signature 'KmmComponent'
initialize(.Object, data, dim = 10,
  nbCluster = 2, modelName = "kmm_pk_s", kernelName = "Gaussian",
  kernelParameters = c(1), kernelComputation = TRUE)

## S4 method for signature 'KmmModel'
initialize(.Object, data, nbCluster = 2,
  modelName = "kmm_pk_s", dim = 10, kernelName = "Gaussian",
  kernelParameters = c(1), kernelComputation = TRUE)

## S4 method for signature 'KmmMixedDataModel'
initialize(.Object, lcomponent,
  nbCluster = 2)

MixAll documentation built on Sept. 12, 2019, 5:05 p.m.