Skip to content
Prev 59491 / 398502 Next

how to suppress whiskers in a bwplot?

The answer to your question is to use a minimal value > 0 for the 
argument "coef" of bwplot() such as coef=10^(-10)

Unfortunately, there is a bug in R-2.0.1, lattice 0.10-14, which shows 
negative length whiskers for positive values of "coef".
 From ?bwplot:

   library(lattice)
   bwplot(voice.part ~ height, data = singer,
      xlab = "Height (inches)", coef = 10^(-10))

[I'm CCing to Deepayan Sarkar, the maintainer of lattice.]

Uwe Ligges
Alexis J. Diamond wrote: