我的情节(与 xyplotlattice )看起来像:

r - 更改 xyplot 面板框的高度-LMLPHP

它看起来很不错,但是如何控制灰色面板框的高度?

我试过了:

strip=strip.custom( par.strip.text=list(cex=2,lines=5,lineheight=2))

但这不起作用。

最佳答案

您要更改 strip 高度:

library(lattice)
Depth <- equal.count(quakes$depth, number=8, overlap=.1)
xyplot(lat ~ long | Depth, data = quakes, par.strip = list(lines = 5, cex = 0.5))

r - 更改 xyplot 面板框的高度-LMLPHP

关于r - 更改 xyplot 面板框的高度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33012179/

10-12 20:20