ccd | R Documentation |
construct the cluster catch digraph from a data matrix.
ccd(data, m = 1, alpha = 0.05, sequential = TRUE, method = NULL) ## S3 method for class 'ccd' plot(x,...)
data |
a matrix of observations. |
m |
slope of the null hypothesis curve. |
alpha |
alpha for the K-S test if |
sequential |
use the sequential or non-sequential version. |
method |
the method used for the distance.
See |
x |
an object of class ccd. |
... |
arguments passed to |
cluster cover digraph. plot.ccd
is just a call to plot.cccd
.
an object of class igraph. In addition, this contains the attributes:
R |
the radii. |
stats |
the K-S statistics. |
layout |
the data vectors. |
walks |
the y-values of the random walks. |
fs |
the null hypothesis curve. |
A |
the adjacency matrix. |
m,alpha |
arguments passed to |
David J. Marchette david.marchette@navy.mil
D.J. Marchette, Random Graphs for Statistical Pattern Recognition, John Wiley & Sons, 2004.
cccd
x <- matrix(rnorm(100),ncol=2) G <- ccd(x) ## Not run: plot(G) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.