View source: R/trustworthiness.R
MappingQuality | R Documentation |
MappingQuality()
calculates the trustworthiness and continuity
of mapped distances \insertCiteVenna2001,Kaski2003TreeDist.
Trustworthiness measures, on a scale from 0–1,
the degree to which points that are nearby in a mapping are truly close
neighbours; continuity, the extent to which points that are truly nearby
retain their close spatial proximity in a mapping.
MappingQuality(original, mapped, neighbours = 10L)
ProjectionQuality(original, mapped, neighbours = 10L)
original , mapped |
Square matrix or |
neighbours |
Integer specifying number of nearest neighbours to use in calculation. This should typically be small relative to the number of points. |
MappingQuality()
returns a named vector of length four,
containing the entries: Trustworthiness
, Continuity
, TxC
(the product of these values), and sqrtTxC
(its square root).
Martin R. Smith (martin.smith@durham.ac.uk)
Other tree space functions:
Islands()
,
MSTSegments()
,
MapTrees()
,
SpectralEigens()
,
cluster-statistics
,
median.multiPhylo()
library("TreeTools", quietly = TRUE)
trees <- as.phylo(0:10, nTip = 8)
distances <- ClusteringInfoDistance(trees)
mapping <- cmdscale(distances)
MappingQuality(distances, dist(mapping), 4)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.