Re: [R] bwplot: using a numeric variable to position boxplots

2012-05-03 Thread Michael Friendly
On 5/3/2012 11:23 AM, Richard M. Heiberger wrote: Michael, I normally do this with the panel.bwplot.intermediate.hh in the HH package. This function works by plotting each box with its own call to the underlying panel.bwplot function. Thanks; I'll check that out. _

Re: [R] bwplot: using a numeric variable to position boxplots

2012-05-03 Thread Richard M. Heiberger
Michael, I normally do this with the panel.bwplot.intermediate.hh in the HH package. This function works by plotting each box with its own call to the underlying panel.bwplot function. This example from ?HH::position uses the "positioned" class to determine where to place the box. > library(HH)

[R] bwplot: using a numeric variable to position boxplots

2012-05-03 Thread Michael Friendly
[Env: R 2.14.2 / Win Xp] In the examples below, I'm using lattice::bwplot to plot boxplots of 4 variables, grouped by a factor 'epoch' which also corresponds to a numeric year. I'd like to modify the plots to position the boxplots according to the numeric value of year, but I can't figure out