我正在使用格子包中的xyplot,我想改变hte标头的颜色。目前,它是一种丑陋的浅橙色。
library(lattice)
x <- c(1:10, 1:10)
y <- c(10:1, 10:1)
z <- c(1:10, seq(1,20, by=2))
a = c(rep("one",10),rep("two",10))
DF <- data.frame(x, y, z, a)
xyplot(y ~ x | a, groups = z < 5, data = DF, col = c("black", "red"),
pch=20, cex=0.3)
答案 0 :(得分:15)
您需要重置trellis.par.get()$strip.background$col
的内容。
要对单个绘图执行此操作,请使用par.settings=
参数:
xyplot(y ~ x | a, groups = z < 5, data = DF, col = c("black", "red"),
pch = 20, cex = 0.3,
par.settings = list(strip.background=list(col="lightgrey")))
要更持久地重置条带背景颜色,请使用trellis.par.set()
:
trellis.par.set(strip.background=list(col="lightgrey"))
要了解您如何自己发现这一点,请尝试以下方法:
names(trellis.par.get())
trellis.par.get("strip.background")
最后,对于一个更复杂(和美学上令人震惊的)条带背景操作的例子,see here。