可以在R中的trellis
(hexbinplot
)对象中转换hexVP
(特别是hexViewport
)对象吗?
如果是的话,怎么做?
我需要这个,因为我使用hexbinplot
向下创建了一个图形,它创建了一个trellis
类对象。
df <- data.frame(x, y) #x and y are two vectors of the same size.
graphic <- hexbinplot(y ~ x, df) #graphic is a 'trellis' class object.
我想使用下面的代码在hexbinplot
创建的图形中插入点。
pushHexport(grafico$plot.vp)
grid.points(a, b) #a and b are two vectors of the same size.
upViewport()
但此代码仅适用于hexVP
(hexViewport
)类,这就是为什么我需要将trellis
对象转换为hexVP
({{1} })object。