output.dir <- "./"
write.table(div.table, file = "DiversityTable.tab", sep = "\t")
Save in PDF:
pdf("myplot.pdf", width = 7, height = 7 * length(hc$order)/20)
plot(hc, hang=-1, main = "Hierarchical clustering")
dev.off()
Save in TIFF:
tiff("myplot.tif", width = 480, height = 480 * length(hc$order)/20)
plot(hc, hang=-1, main = "Hierarchical clustering")
dev.off()
To save in Microsoft EMF format, try the following. If you find a way to tune figure width for emf files kindly let the admins know.
plot(hc, hang=-1, main = "Hierarchical clustering")
savePlot("myplot.emf", type = "emf")
dev.off()