labclust(x, y, labels = <<see below>>)
Missing values are not accepted.
Graphical parameters may also be supplied as arguments to this function (see par). In addition, the high-level graphics arguments described under par and the arguments to title may be supplied to this function.
# create a sample object using built-in dataset x <- hclust(dist(longley.y)) xy <- plclust(x, plot = FALSE) # save coords of tree plclust(x, label = FALSE) # plot it labclust(xy) # now label it with the object number# can use a character vector of names to label the leaves labclust(xy, labels=listnames) # vector is called "listnames"