Skip to content
Prev 5520 / 29559 Next

Lattice PDF two polygon maps per page - help

I think you need to save the trellis objects returned by spplot:

plt1 = spplot(map1, ...)
plt2 = spplot(map2, ...)

and then plot them in a single device:

print(plt1, ..., more = TRUE)
print(plt2, ..., more = FALSE)

where you replace the ... with the relevant argument for position OR
split, read ?print.trellis for the details.
--
Edzer
Jim Burke wrote: