Re: [R] labels outliers in boxplot

2007-01-16 Thread Greg Snow
) 408-8111 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, January 10, 2007 2:08 PM To: r-help@stat.math.ethz.ch Subject: [R] labels outliers in boxplot Dear R-users, Following is part of my data, where

[R] labels outliers in boxplot

2007-01-12 Thread antoniababe
Dear R-users, Following is part of my data, where slide has 36 levels and block 48 levels. I have done boxplot for each slide on the same graph. There are outliers for each slide and I tried to use indentify functtion to identify outliers in such a way that when I click on an outlier or point,

Re: [R] labels outliers in boxplot

2007-01-12 Thread talepanda
because given data is a part of your data, I cannot examine, however, try: ##out.block-identify(tb_ncs$y,tb_ncs$Slide) out.block-identify(tb_ncs$Slide,tb_ncs$y) On 1/11/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Dear R-users, Following is part of my data, where slide has 36 levels and

Re: [R] labels outliers in boxplot

2007-01-12 Thread antoniababe
Dear talepande, Thanks for your suggestion, I have already tried to use it, but the identify function gave me only the observation number everytime I clicked on any point.What I want is instead of obervation numbers it would be block and/or slide numbers. Any other idea how I can make it

Re: [R] labels outliers in boxplot

2007-01-12 Thread talepanda
you can get them from return value, try: out.id-identify(tb_ncs$Slide,tb_ncs$y) out.block-tb_ncs[out.id,]$Block On 1/12/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Dear talepande, Thanks for your suggestion, I have already tried to use it, but the identify function gave me only the