[R] how to use different ylim scales on a lattice bwplot?

2009-12-03 Thread Steve_Friedman
A colleague is interested in modifying the ylim definition for individual panels of a common bwplot plotting statement. Is there an approach to modifying the bwplot function to allow for a dynamic ylim range given different panel factors ? He is using R 2.6.2 on a Linux distribution running

Re: [R] how to use different ylim scales on a lattice bwplot?

2009-12-03 Thread Felix Andrews
You can define a custom prepanel function: see the entry for 'prepanel' in ?xyplot If you just want to set specified ylims in each panel, you can do that by passing a list to 'ylim'. 2009/12/4 steve_fried...@nps.gov: A colleague is interested in modifying the ylim definition for individual

Re: [R] how to use different ylim scales on a lattice bwplot?

2009-12-03 Thread Deepayan Sarkar
On Thu, Dec 3, 2009 at 2:32 PM, Felix Andrews fe...@nfrac.org wrote: You can define a custom prepanel function: see the entry for 'prepanel' in ?xyplot If you just want to set specified ylims in each panel, you can do that by passing a list to 'ylim'. All this assuming, of course, that