Distances between each pair of trees
Value
Matrix detailing distance between each pair of trees. Identical trees are assumed to have zero distance.
Examples
trees <- list(BalancedTree(8), PectinateTree(8), StarTree(8))
TCIDiff <- function(tree1, tree2) {
TotalCopheneticIndex(tree1) - TotalCopheneticIndex(tree2)
}
PairwiseDistances(trees, TCIDiff, 1)
#> 1 2 3
#> 1 -40 16
#> 2 -40 56
#> 3 16 56
TCIRange <- function(tree1, tree2) {
range(TotalCopheneticIndex(tree1), TotalCopheneticIndex(tree2))
}
PairwiseDistances(trees, TCIRange, 2)
#> [[1]]
#> 1 2 3
#> 1 16 0
#> 2 16 0
#> 3 0 0
#>
#> [[2]]
#> 1 2 3
#> 1 56 16
#> 2 56 56
#> 3 16 56
#>