dist_setNames {usedist} | R Documentation |
dist
object.Set the names/labels of a dist
object.
dist_setNames(d, nm)
d |
A distance matrix object of class |
nm |
New labels for the rows/columns. |
A distance matrix with new row/column labels.
m4 <- matrix(1:16, nrow=4, dimnames=list(LETTERS[1:4]))
dm4 <- dist(m4)
dist_setNames(dm4, LETTERS[9:12])