How can I plot a text that wraps and covers two lines in such a way that it does not cover the next row? Here's an example:
library(gplots)
a <- data.frame(a = c(1,2,3), b = c(4,5,6))
colnames(a)[1] <- "wrap\ntext"
textplot(a)
It can be easily seen that the word text
from the title covers the number one (1).