EstimateRadiusByDistance {FCPS} | R Documentation |
Estimate Radius By Distance
Description
Published in [Thrun et al, 2016] for the case of automatically estimating the radius of the P-matrix. Can also be used to estimate the radius parameter for distance based clustering algorithms.
Usage
EstimateRadiusByDistance(DistanceMatrix)
Arguments
DistanceMatrix |
[1:n,1:n] symmetric distance Matrix of n cases |
Details
For density-based clustering algorithms like DBSCAN
it is not always usefull.
Value
Numerical scalar defining the radius
Note
Symmetric matrix is assumed.
Author(s)
Michael Thrun
References
[Thrun et al., 2016] Thrun, M. C., Lerch, F., Loetsch, J., & Ultsch, A.: Visualization and 3D Printing of Multivariate Data of Biomarkers, in Skala, V. (Ed.), International Conference in Central Europe on Computer Graphics, Visualization and Computer Vision (WSCG), Vol. 24, pp. 7-16, Plzen, http://wscg.zcu.cz/wscg2016/short/A43-full.pdf, 2016.
See Also
Examples
data('Hepta')
DistanceMatrix=as.matrix(dist(Hepta$Data))
Radius=EstimateRadiusByDistance(DistanceMatrix)
[Package FCPS version 1.3.4 Index]