> -----Original Message----- > From: r-help-boun...@r-project.org > [mailto:r-help-boun...@r-project.org] On Behalf Of Waverley > Sent: Saturday, July 25, 2009 10:38 AM > To: r-help; r-help@r-project.org > Subject: [R] ROCR package question > > Thanks for the quick reply. That is very clear for my question 1, 2. > > How about question 3? When I plot, is there way not to show the > whisker plot outliers for evaluating the multiple runs? I have tried > to put the option from boxplot command outline=FALSE, however, it did > not work. > > Can you help? > > Thanks again for your kind help. > > > > >
First, there is no need to send your posts to both r-h...@stat.math.ethz.ch and r-help@r-project.org . They both lead to the mailing list and it is annoying to receive multiple copies of the same post. Second, the posting guidelines ask for a self-contained, reproducible example so that the list knows exactly what your problem is. I have created some data and and run boxplot with and without outline=FALSE. When FALSE, I don't get the outliers drawn. So can you show us an example of your problem? > x<-c(rnorm(100), 30); > boxplot(x) > boxplot(x,outline=FALSE) Dan Daniel Nordlund Bothell, WA USA ______________________________________________ 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.