例えば:
mytheme <- trellis.par.get()
mytheme$strip.border$col = 'grey80'
mytheme$strip.background$col = 'grey80'
mytheme$axis.line$col = 'grey80'
mytheme$axis.text$col = 'grey60'
mytheme$plot.symbol$pch = 20
mytheme$plot.symbol$cex = .5
mytheme$plot.symbol$col = '#7AC5CD'
mytheme$plot.symbol$alpha = .8
l.sc <- update(scatter.lattice, par.settings = mytheme,
layout = c(3, 2),
between = list(x = 0.3, y = 0.3))
print(l.sc)
のデフォルトを に設定するにはどうすればpar.settings
よいmytheme
ですか?
R を使用した Lattice Multivariate Data Visualizationの 131 ページで、著者は次の例を示しています。
lattice.options(lattice.theme = standard.theme("pdf"))
しかし、それを現在のケースに適応させる方法がわかりません。私は試した:
lattice.options(lattice.theme = mytheme)
そしてそれはうまくいきません。