Re: [R] Removing unused parameter in qqplot

2014-01-08 Thread MacQueen, Don
Use binwidth = 1 -- Don MacQueen Lawrence Livermore National Laboratory 7000 East Ave., L-627 Livermore, CA 94550 925-423-1062 On 1/6/14 4:36 PM, "Peter Maclean" wrote: >With these toy data, how can I remove unused empty space between the bars? > >#Toy data >x1 <- as.data.frame(rep(1:3

Re: [R] Removing unused parameter in qqplot

2014-01-06 Thread Ista Zahn
On Mon, Jan 6, 2014 at 7:36 PM, Peter Maclean wrote: > With these toy data, how can I remove unused empty space between the bars? There is no unused space. It is very hard to see how you could remove the empty space and still have a meaningful graph. Best, Ista > > #Toy data > x1 <- as.data.fram

Re: [R] Removing unused parameter in qqplot

2014-01-06 Thread Peter Maclean
With these toy data, how can I remove unused empty space between the bars?   #Toy data x1 <- as.data.frame(rep(1:3,   c(10,2,6))) colnames(x1) <- c("name") x2 <- as.data.frame(rep(5:7,   c(14,5,8))) colnames(x2) <- c("name") x3 <- as.data.frame(rep(10:12, c(5,5, 8))) colnames(x3) <- c("name") x4 <-