plot.cec: plot

Description Usage Arguments Details Examples

Description

Plot clustering found on 2D plot coloring by cluster.

Usage

1
2
3
## S3 method for class 'Rcpp_CecModel'
plot(x, slice = c(), pca = FALSE,
  ellipses = FALSE, centers = FALSE, ...)

Arguments

x

CEC model object.

slice

List of dimentions chosen for display since plot is 2D.

pca

Apply PCA or not

ellipses

Outline clusters.

centers

Marks center of every cluster.

...

other arguments not used by this method.

Details

Plot CEC

Examples

1
2
3
4
5
6
7
8
## Not run: 
plot(cec)
plot(cec, slice=c(1,3), ellipses=TRUE)
plot(cec, slice=c(1,2,3))
plot(cec, ellipses=TRUE, centers=FALSE)
plot(cec, pca=TRUE, ellipses=TRUE, centers=FALSE)

## End(Not run)

gmum.r documentation built on May 29, 2017, 3:52 p.m.

Related to plot.cec in gmum.r...