Displaying 1 result from an estimated 1 matches for "plotlayersfortimestep".
2012 May 01
1
[fields:image.plot] subtitle under title (not image)?
...information about the layer in a title
and subtitle. The title is where I want it--above the image--but the
subtitle is printing below the image; I'd prefer it between the title
and the image. Can this be done? FWIW, the code that plots (in
https://github.com/TomRoche/ioapi-hack-R/blob/master/plotLayersForTimestep.r
) is like
if (data to plot is not all NA) {
# determine quantiles, then
image.plot(plot.list, xlab="", ylab="", axes=F, col=colors(100),
axis.args=list(at=quantiles, labels=quantiles.formatted),
main=title, sub=subtitle)
lines(map)
} else {
pl...