Re: [R] Boxplot graphic

2012-07-25 Thread John Fox
Dear phillen, You can use the identify() command following boxplot() to identify outliers, or more simply, the Boxplot() function in the car package, which will do this for you (see the first example in ?Boxplot). I hope this helps, John John F

Re: [R] Boxplot graphic

2012-07-25 Thread S Ellison
Probably the simplest answer is to google 'label boxplot outliers in R'. I found half a dozen solutions, (one of them my own, but that doesn't quite answer your question). Adding names to a series of data can be as simple as saying names(x) <- paste("x", 1:length(x)) After that, the solutions g

Re: [R] Boxplot graphic

2012-07-25 Thread Uwe Ligges
On 25.07.2012 13:26, phillen wrote: Dear R-users! I boxplotted some data. the class of the data is numeric. There are some outliers and I would like to see their names in the graphic. So, instead that the data points of the outliers are plotted as points, I would like to have their names plott

Re: [R] Boxplot graphic

2012-07-25 Thread John Kane
PLEASE do read the posting guide. You really need to supply some sample data and the code you are using. We can make guesses about what you are doing but it is much easier to actually look at the data and code. Please use dput() ( see ?dput) to supply some sample data. John Kane Kingston ON