Displaying 1 result from an estimated 1 matches for "168163".
Did you mean:
16163
2011 Oct 09
2
Multiple levelplot with title
...like this:
print(levelplot(matrix(c(1,2,3,4), 2, 2)), split=c(1, 1, 2, 1))
print(levelplot(matrix(c(1,2,3,4), 2, 2)), split=c(2, 1, 2, 1),
newpage=FALSE)
I found a trick:
mtext("Test", outer = TRUE, cex = 1.5)
here:
https://stat.ethz.ch/pipermail/r-help/2008-July/168163.html
but it doesn't works for me.
Could anyone please show me some pointers what should I read in order to
get an insight why this isn't working as I expect?
What I managed to find a workaround by using panel.text(), but I don't
really like it since it requires defined x/y coordina...