I am experiencing the similar problems seen in:
and i tried the solutions suggested in both posts.
my code used to plot my hclust:
plot(hclust.train, hang = -1)
here's how my hclust plot look like:
as suggested in the first post mentioned above, i tried:
par(oma=c(0,0,2,0))
to add border padding; however, the plot with the border look like this:
it's simply the cut off version but moved down a bit...
here's how my clusplot plots look like (same problem):
i've also tried using the argument "mar=c(0,0,2,0)", as suggested in the 2nd post mentioned in the beginning, but the result is the same as adding the border padding.
any help is appreciated.
Edit: Thanks to Ben Bolker for a simple quick solution. After using his suggested code:
par(xpd=NA,oma=c(0,0,2,0))
i got the following improved version:
my last question would be, how to get rid of the border line that's going through the title, OR move the title position above that border line? Thank you!