3 回答
TA贡献1770条经验 获得超3个赞
该格子包往往(但并不总是)忽略相提并论命令,所以我绘制W /时只需避免使用它格。
要将多个点阵图放在一个页面上:
创建(但不绘制)晶格/格子图对象,然后
为每个图调用一次打印
对于每个打印调用,请传递(i)绘图的参数;(ii) more,设置为TRUE,并且仅在首次调用print时才传入,以及(iii)pos,其给出页面上每个图的位置,指定为图的左下角的xy坐标对角和右上角,分别是具有四个数字的向量。
显示起来比说起来容易得多:
data(AirPassengers) # a dataset supplied with base R
AP = AirPassengers # re-bind to save some typing
# split the AP data set into two pieces
# so that we have unique data for each of the two plots
w1 = window(AP, start=c(1949, 1), end=c(1952, 1))
w2 = window(AP, start=c(1952, 1), end=c(1960, 12))
px1 = xyplot(w1)
px2 = xyplot(w2)
# arrange the two plots vertically
print(px1, position=c(0, .6, 1, 1), more=TRUE)
print(px2, position=c(0, 0, 1, .4))
- 3 回答
- 0 关注
- 531 浏览
添加回答
举报