我正在尝试调整格子图中我的图例符号的颜色。在其他问题(lattice auto.key - how to adjust lines and points?,Changing the line types with trellis doubleYScale plot)中,我尝试按照以下说明使用键而不是simpleKey进行操作,但这没有用。
我将两个时间序列重叠了两年,每次。
require(lattice)
require(latticeExtra)
plot1<-xyplot(method1.ts, col="black", type="l", ylab="Y1", xlab="", key = simpleKey(col=c("black"),text=c("Test"),points=F, lines=T, space="top"))
plot2<-xyplot(method2.ts, type="h", lwd=3, lend=1, col="grey47", ylab="Y2", key = simpleKey(col=c("black"),text=c("Test2"),rectangles=T, points=F, lines=F, space="top"))
doubleYScale(plot1, plot2, use.style=F, add.ylab2 = TRUE, par.settings = simpleTheme(col = c("black","black")))
还可以在其中一个面板中显示图例吗?并调整面板标题的背景颜色?