On Fri, Mar 28, 2008 at 9:23 AM, Todd Remund <tkremund98 at hotmail.com>
wrote:>
>
> Is there a way of changing the line type for the wiskers in bwplot? I
have been able to
> do pretty much everything I would like to do in bwplot, just can't
change these lines from
> dashed to solid. Thanks.
These are controlled by the box.umbrella setting. For a one-off change, try
bwplot(group ~ extra, sleep, par.settings = list(box.umbrella = list(lty = 1)))
To change the default for all subsequent plots, try
trellis.par.set( box.umbrella = list(lty = 1) )
-Deepayan