更改格子图中 header 面板的大小
Change the size of header panel in lattice plot
我想更改其中的 header panel size
以及 text
的 font size
。这是一个例子:
library(lattice)
dat <-data.frame(a=(rnorm(50)),b=(rnorm(50)),c=(c(rep("first",25),rep("second",25))))
xyplot(a~b|c, data=dat,par.settings = list(strip.background=list(col="gray")))
基本上我需要 gray area
的大小以及 "first"
和 "second"
的字体大小。
我想更改其中的 header panel size
以及 text
的 font size
。这是一个例子:
library(lattice)
dat <-data.frame(a=(rnorm(50)),b=(rnorm(50)),c=(c(rep("first",25),rep("second",25))))
xyplot(a~b|c, data=dat,par.settings = list(strip.background=list(col="gray")))
基本上我需要 gray area
的大小以及 "first"
和 "second"
的字体大小。