Cmeasure {DRquality} | R Documentation |
C-Measure subtypes
Description
Calculate the C-Measure subtypes of minimal path length and minimal wiring
Usage
Cmeasure(Data, Projection, k = 1)
Arguments
Data |
[1:n,1:d] numerical matrix of points in input space. |
Projection |
[1:n,1:2] numerical matrix of points in output space. |
k |
Number of nearest neighbors, both measures set it always to k=1. |
Value
[1:2] Numerical vector of MinimalPathlength and MinimalWiring values.
Author(s)
Michael Thrun
Examples
if(requireNamespace("FCPS")){
data(Hepta,package="FCPS")
projection=cmdscale(dist(Hepta$Data), k=2)
Cmeasure(Hepta$Data,projection)
}
[Package DRquality version 0.2.1 Index]