[R] exclude data for boxplot stats using mathematical operator

2009-10-26 Thread e-letter
Readers, I have a data set as follows: 1,1 2,2 3,3 4,4 5,3 6,2 7,-10 8,-9 9,-3 10,2 11,3 12,4 13,5 14,4 15,3 16,2 17,1 I entered this data set using the command 'read.csv'. I want to exclude values fewer than zero in column 2 so then I tried the following command:

Re: [R] exclude data for boxplot stats using mathematical operator

2009-10-26 Thread Stephan Kolassa
Try this: boxplot.stats(x[x[,2]0,2],do.conf=FALSE) HTH, Stephan e-letter schrieb: Readers, I have a data set as follows: 1,1 2,2 3,3 4,4 5,3 6,2 7,-10 8,-9 9,-3 10,2 11,3 12,4 13,5 14,4 15,3 16,2 17,1 I entered this data set using the command 'read.csv'. I want to exclude values fewer than

Re: [R] exclude data for boxplot stats using mathematical operator

2009-10-26 Thread John Kane
Perhaps subset the data first? subset(x, x[,2] =0) --- On Mon, 10/26/09, e-letter inp...@gmail.com wrote: From: e-letter inp...@gmail.com Subject: [R] exclude data for boxplot stats using mathematical operator To: r-help@r-project.org Received: Monday, October 26, 2009, 3:25 AM Readers