plot-KmmMixedDataModel-method: Plotting of a class ['KmmMixedDataModel']

Description Usage Arguments See Also Examples

Description

Plotting data from a [KmmMixedDataModel] object using the estimated parameters and partition.

Usage

1
2
## S4 method for signature 'KmmMixedDataModel'
plot(x, y, ...)

Arguments

x

an object of class [KmmMixedDataModel]

y

a vector listing the data sets you want to disply

...

further arguments passed to or from other methods

See Also

plot

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
## Not run: 
data(bullsEye)
data(bullsEye.cat)
## with default values
ldata  = list(bullsEye, bullsEye.cat)
modelcont <- list(modelName="kmm_pk_s", dim = 10, kernelName="Gaussian")
modelcat  <- list(modelName="kmm_pk_s", dim = 20, kernelName="Hamming", kernelParameters = c(0.6))
lmodels = list( modelcont, modelcat)

model <- kmmMixedData(ldata, lmodels, nbCluster=2:5, strategy = clusterFastStrategy())
# plot only the first continuous data set
plot(model, y=c(1))
  
## End(Not run)

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