Skip to content
Prev 178072 / 398502 Next

Setting lattice par parameters

Because you're not calling trellis.par.set correctly. It should be:

trellis.par.set(par.ylab.text = list(cex = 0.65), par.xlab.text =
list(cex = 0.65))

However, I usually do things like this:

my.theme <- list(par.ylab.text = list(cex = 0.65), par.xlab.text =
list(cex = 0.65))
barchart(..., par.settings = my.theme)

so the settings are only changed for the current plot and not globally.

HTH,

--sundar
On Thu, Apr 23, 2009 at 6:25 AM, <Steve_Friedman at nps.gov> wrote: