可以根据R metafor包中的类别在L'abbé-plot中对点进行着色?

时间:2018-01-13 08:25:45

标签: r plot metafor

是否可以为L'abbé情节中的“点”着色?我正在使用metafor包。

 # Load package
 library(metafor)

 # Load data
 data(dat.bcg)

 # Code 
 ex <- rma(ai=tpos, bi=tneg, ci=cpos, 
 di=cneg, data=dat.bcg, measure="OR",
 slab=paste(author, year, sep=", "), method="FE")

# L'abbé plot
labbe(ex, transf = exp, ylab="Test group", xlab="Control")

是否可以根据变量为点着色?

Fx蓝色点代表:

dat.bcg$alloc==random

谢谢你,C。

1 个答案:

答案 0 :(得分:2)

您可以尝试以下方法:

dat.bcg$var[dat.bcg$alloc == "random"] <- "blue"

labbe(ex, transf = exp, ylab = "Test group", xlab = "Control", bg = dat.bcg$var)

enter image description here

没有转变:

labbe(ex, ylab = "Test group", xlab = "Control", bg = dat.bcg$var, grid = TRUE)

enter image description here

我们可以看到7个实例中有7个蓝点dat.bcg$alloc == "random"

区分要点的另一种选择:

labbe(ex, ylab = "Test group", xlab = "Control", grid = TRUE, pch = dat.bcg$alloc)

enter image description here

要更改所有三个点的颜色,您可以执行以下操作:

dat.bcg$var[dat.bcg$alloc == "random"] <- "blue"
dat.bcg$var[dat.bcg$alloc == "alternate"] <- "green"
dat.bcg$var[dat.bcg$alloc == "systematic"] <- "red"

或者dplyr我们可以使用case_when

library(dplyr)

dat.bcg <- dat.bcg %>% 
  mutate(var = case_when(alloc == "random" ~ "blue",
                         alloc == "alternate" ~ "green",
                         alloc == "systematic" ~ "red",
                         TRUE ~ as.character(NA)))

enter image description here