我想在现有地块的一个小区域中拟合整个格子图。
xyplot(decrease ~ treatment, OrchardSprays, groups = rowpos, type = "a")
pushViewport(viewport(.2, .7, .2, .2))
grid.rect(gp=gpar(fill="white"))
给了我这个:
所以视口被推送。但是,如果再次调用 lattice 函数,它会使用整个设备,就像调用grid.newpage()
:
xyplot(decrease ~ treatment, OrchardSprays, groups = rowpos, type = "a")
有没有办法将晶格图限制在设备上的预定义区域,就像我上面的例子一样?