On 9/5/07, Frede Aakmann Tøgersen <[EMAIL PROTECTED]> wrote:
> This should give you something close to what you want:
>
>
> xyplot(Petal.Length ~ Petal.Width | Species, iris,
>        strip = strip.custom(par.strip.text = list(cex = 2)),
>        par.settings = list(layout.heights=list(strip=1.45)))
>
> The par.settings argument alters locally the default par settings of lattice
> plots, see e.g. ?trellis.par.get and the ?xyplot about the par.settings
> argument.

Another possibility that predates par.settings (but is basically equivalent) is

xyplot(Petal.Length ~ Petal.Width | Species, iris,
       par.strip.text = list(lines = 2, cex = 2))

-Deepayan

______________________________________________
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to