Displaying 2 results from an estimated 2 matches for "nboxplot".
Did you mean:
  boxplot
  
2010 Oct 13
1
bwplot change whiskers position to percentile 5 and P95
Dear R-community,
Using bwplot, how can I put the whiskers at percentile 5 and percentile 95,
in place of the default position coef=1.5??
Using panel=panel.bwstrip, whiskerpos=0.05, from the package agsemisc gives
satisfaction, but changes the appearance of my boxplot and works with an old
version of R, what I don’t want, and I didn’t find the option in
box.umbrella parameters
Many thanks
2010 Oct 15
0
nomianl response model
...has  
occurred to me that you might get some of those "out" dots inside your  
whiskers. (Fixing that would not be too hard once you are inside  
boxplot.stats().
Seemed to work for me with your data (at least the extent of plotting  
a nice 3 x 2 panel display. All I did was redefine an nboxplot.stats  
by inserting this line after the line cited above:
stats[c(1,5)]<- quantile(x, probs=c(0.05, 0.95))
and then added an argument  ..., stats=nboxplot.stats)  inside your  
panel.bwplot.
-- 
David.
> Many thanks
> Christophe
>
> Here is the code:
>
> library(lattice)
&...