Learn R Programming

cccd (version 1.00.05)

ccd: Cluster Catch Digraphs

Description

construct the cluster catch digraph from a data matrix.

Usage

ccd(data, m = 1, alpha = 0.05, sequential = TRUE)

Arguments

data
a matrix of observations
m
slope of the null hypothesis curve
alpha
alpha for the K-S test if sequential=T
sequential
use the sequential or non-sequential version

Value

  • an object of class igraph. In addition, this contains the attributes:
  • Rthe radii.
  • statsthe K-S statistics.
  • layoutthe data vectors.
  • walksthe y-values of the random walks.
  • fsthe null hypothesis curve.
  • Athe adjacency matrix.
  • m,alphaarguments passed to ccd.

Details

cluster cover digraph.

References

D.J. Marchette, Random Graphs for Statistical Pattern Recognition, John Wiley & Sons, 2004.

See Also

cccd

Examples

Run this code
x <- matrix(rnorm(100),ncol=2)
G <- ccd(x)
plotCCD(G)

Run the code above in your browser using DataLab