Hi, I'm working with a data.frame containing values between 0 and 22000. Most of the values are actually between 0 and 50 and the high ones are outliers. I want to generate a boxplot and since the outliers are extremely high, I need to scale the y scale logarithmically. Otherwise one wouldn't really see the boxes of the boxplot.
boxplot(dat, log="y", ylim=c(0, max(dat))) Trying the above doesn't work, since the y scale has to be positive. But when I generate the boxplot with ylim=c(1, max(dat)) it doesn't properly generate the whiskers or beginning of the boxes, because some of the mins and first quantiles are 0. Can anybody help and tell me how I can generate a logarithmic y scale starting at 0? Thanks in advance, -- Anne Skoeries [[alternative HTML version deleted]] ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.