You can set the cex parameter with the par() function before calling plot() . For example:
# example from ?hclust hc <- hclust(dist(USArrests), "ave") # default label size plot(hc, xlab="xlab", ylab="ylab", main="main", sub="") # reduced label size par(cex=0.3, mar=c(5, 8, 4, 1)) plot(hc, xlab="", ylab="", main="", sub="", axes=FALSE) par(cex=1) title(xlab="xlab", ylab="ylab", main="main") axis(2)
Jean V. Adams
source share