Re: [R] Removing lower whisker in boxplot to see the effects of the high values

2012-09-29 Thread David Winsemius
On Sep 29, 2012, at 12:46 PM, David Winsemius wrote: > > On Sep 29, 2012, at 12:09 PM, Meredith Ballard LaBeau wrote: > >> David: >> I set this up and it still seems to plot the same: >> >> maumnf_plot<-boxplot(log_loads~ind,data=nfmaum, horizontal=TRUE, notch=T, >> outline=FALSE, whisker=0,

Re: [R] Removing lower whisker in boxplot to see the effects of the high values

2012-09-29 Thread Rui Barradas
Hello, Note that some graphics parameters of boxplot and bxp are not the same. For instance 'col' becomes 'boxfill'. boxp <- function(x, ...){ bp <- boxplot(x, ..., plot = FALSE) bp$stats[1, ] <- bp$stats[2, ] bxp(bp, ...) } x <- rnorm(1000) boxplot(x, col ="blue", notch = TRUE)

Re: [R] Removing lower whisker in boxplot to see the effects of the high values

2012-09-29 Thread David Winsemius
On Sep 29, 2012, at 12:09 PM, Meredith Ballard LaBeau wrote: > David: > I set this up and it still seems to plot the same: > > maumnf_plot<-boxplot(log_loads~ind,data=nfmaum, horizontal=TRUE, notch=T, > outline=FALSE, whisker=0, main="Maumee River Near Future Climate Scenarios", > ylab="Log L

Re: [R] Removing lower whisker in boxplot to see the effects of the high values

2012-09-29 Thread David Winsemius
On Sep 29, 2012, at 10:23 AM, Meredith Ballard LaBeau wrote: > Good Afternoon- > I was wanting to alter the boxplot to remove the lower whisker, both the > whisker line and staple just on the lower end. Is there a way to do this? > As my code is currently: > boxplot(log_loads~ind,data=nfmaum, ho

[R] Removing lower whisker in boxplot to see the effects of the high values

2012-09-29 Thread Meredith Ballard LaBeau
Good Afternoon- I was wanting to alter the boxplot to remove the lower whisker, both the whisker line and staple just on the lower end. Is there a way to do this? As my code is currently: boxplot(log_loads~ind,data=nfmaum, horizontal=TRUE, notch=T, outline=FALSE, whisker=0, main="Maumee River Nea