get_gower_dist {EvoPhylo} | R Documentation |
Computes Gower distance between characters from a phylogenetic data matrix.
get_gower_dist(x, numeric = FALSE)
x |
A phylogenetic data matrix in Nexus (.nex) format, or in any other data frame or matrix format with a column for each character and terminal taxa as rows, which will be read using |
numeric |
Whether to treat the values contained in the |
The Gower distance matrix.
This function uses code adapted from StatMatch::gower.dist()
written by Marcello D'Orazio.
vignette("char-part")
for the use of this function as part of an analysis pipeline.
# See vignette("char-part") for how to use this
# function as part of an analysis pipeline
# Load example phylogenetic data matrix
data("characters")
# Create distance matrix
Dmatrix <- get_gower_dist(characters)
# Reading data matrix as numeric data
Dmatrix <- get_gower_dist(characters, numeric = TRUE)