「ぎょーむ日誌」目次に戻る | KuboWeb top に戻る | twilog | atom

ぎょーむ日誌 2007-08-02

苦情・お叱りは, たいへんお手数かけて恐縮ですが, 久保 (kubo@ees.hokudai.ac.jp) までお知らせください.

2007 年 08 月 02 日 (木)

ulattice02

library(lattice)
d <- read.csv("data.csv")

tpar <- trellis.par.get() # じつは tpar <- list() でもよい
# names(tpar) や show.settings() で設定可能な項目がみえる
tpar$par.xlab.text <- list(cex = 1.2)
tpar$par.ylab.text <- list(cex = 1.2)
tpar$layout.widths <- list(left.padding = 0, right.padding = 0)
tpar$layout.heights <- list(top.padding = 0, bottom.padding = 0)

tpar$box.rectangle <- list(col = "#cccccc", fill = "#eeeeee")
tpar$box.umbrella <- list(col = "#cccccc", lty = 1, lwd = 2)

trellis.par.set(tpar) # 変更した設定を反映させる

v.sex <- levels(d$sex)
print(bwplot(
	total.leaf.area ~ as.factor(rppfd) | sex,
	data = d,
	layout = c(3, 1),
	xlab = expression(bold("rppfd")),                         
	ylab = expression(bold("LA"[total]~~(mm^2/plant))),
	strip = function(which.panel, ...) {
		lrect(0, 0, 1, 1, col = "#eeeeee", border = "#000000")
		ltext(0.5, 0.5, v.sex[which.panel], col = "#808080")
	}
))

KuboLog | KuboWeb