我想用较粗的线条绘制方框。在boxplot
函数中我只是简单地放了lwd=2
,但在格子中bwplot
我可以把头发拉出来,但还没有找到解决方案!
(我的意思是上图中的蓝色框)
可使用的示例代码:
require(lattice)
set.seed(123)
n <- 300
type <- sample(c("city", "river", "village"), n, replace = TRUE)
month <- sample(c("may", "june"), n, replace = TRUE)
x <- rnorm(n)
df <- data.frame(x, type, month)
bwplot(x ~ type|month, data = df, panel=function(...) {
panel.abline(h=0, col="green")
panel.bwplot(...)
})