2

我可以毫无问题地做到这一点:

boxplot(coef ~ habitat, data = res)
abline(h = 0, col = "green")

但是当我使用格子时,水平线错位了:

bwplot(coef ~ habitat, data = res)
abline(h = 0, col = "green")

在此处输入图像描述

我尝试panel.abline改用,但这会将绿线放在图片的顶部。

4

1 回答 1

5

使用面板功能;按照您希望添加部件的顺序对包含的功能进行排序;利用...以避免必须知道/管理面板功能的所有参数

bwplot(coef ~ habitat, data = res, panel=function(...) {
    panel.abline(h=0, col="green")
    panel.bwplot(...)
})

当有多个面板时,面板函数的概念更有意义,例如,

res = data.frame(coef=rnorm(99) + (-1):1, habitat=sample(letters[1:3], 99, TRUE),
                 grp=c("W", "X", "Y"))
bwplot(coef ~ habitat | grp, data = res, panel=function(x, y, ...) {
    ## green line at panel-median y value
    panel.abline(h=median(y), col="green")
    panel.bwplot(x, y, ...)
})
于 2013-08-16T13:51:41.223 回答