Re: [R] Plotting Notched Box Plots Log Scale - Losing bottom portion of box plot

2018-03-21 Thread Bert Gunter
Note that: > plot(Iron~Location,data=MyDataIron,log="y",notch=FALSE) > plot(10+Iron~Location,data=MyDataIron,log="y",notch=TRUE) Warning message: In bxp(list(stats = c(10.66, 13.9, 24.9, 39, 60, 10.05, 10.07515, : some notches went outside hinges ('box'): maybe set notch=FALSE ## Both work, bu

[R] Plotting Notched Box Plots Log Scale - Losing bottom portion of box plot

2018-03-21 Thread David Doyle
Hello, I'm using the code below to generate some notched box plots. The issue is whenever I use log scale, the sides of the bottom part of the box plots don't plot. I've tried it in RStudio Ver 1.1.419 and R version 3.4.3 and I get the same result. The code and link to my data is below. Thank