Re: [R] [Lattice] Incrase the height of strips in Trellis plots

2007-09-05 Thread Frede Aakmann Tøgersen
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

Re: [R] [Lattice] Incrase the height of strips in Trellis plots

2007-09-05 Thread Bernd Weiss
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Frede Aakmann Tøgersen schrieb: 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 =

Re: [R] [Lattice] Incrase the height of strips in Trellis plots

2007-09-05 Thread deepayan . sarkar
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

[R] [Lattice] Incrase the height of strips in Trellis plots

2007-09-04 Thread Bernd Weiss
Dear all, I wonder how to increase the height of strips via strip.default or strip.custom. The following example hopefully illustrates the difficulty I am facing: library(lattice) xyplot(Petal.Length ~ Petal.Width | Species, iris, strip = strip.custom(par.strip.text = list(cex = 2)))