Displaying 1 result from an estimated 1 matches for "52c53".
Did you mean:
5253
2000 May 18
0
Control of box and staple width in boxplot()
...bxp(groups, width, varwidth = varwidth, boxwex=boxwex,
> notch = notch,
bxp()
1c1,2
< function (z, notch = FALSE, width = NULL, varwidth = FALSE,
notch.frac = 0.5,
---
> function (z, notch = FALSE, width = NULL, varwidth = FALSE,
> boxwex=0.8, notch.frac = 0.5,
52c53
< 0.8 * width/max(width)
---
> boxwex * width/max(width)
55c56
< 0.8 * sqrt(unlist(lapply(z, "[[", "n"))/nmax)
---
> boxwex * sqrt(unlist(lapply(z, "[[", "n"))/nmax)
57,58c58,59
< 0.4
< else rep(0....