[R] Boxplot Labels solved

2013-04-10 Thread Beatriz González Domínguez
ea -Original Message- From: Jose Iparraguirre Sent: Wednesday, April 10, 2013 10:19 AM To: Beatriz González Domínguez ; r-help-ow...@r-project.org ; R Help 1 ; R Help 2 Subject: RE: [R] Boxplot Labels OK Beatriz, In this case, use the car package and run the following: bp <- Box

Re: [R] Boxplot Labels OK

2013-04-10 Thread Jose Iparraguirre
09 April 2013 17:32 To: r-help-ow...@r-project.org; R Help 1; R Help 2 Subject: [R] Boxplot Labels OK Dear all, I have just sent an enquiry but probably I hadn’t expressed myself properly. Could anyone help me with the following? When I run the code on my data I get a boxplot with outliers id

Re: [R] Boxplot Labels OK

2013-04-09 Thread Rui Barradas
zález Domínguez Cc: r-help-ow...@r-project.org ; R Help 1 ; R Help 2 Subject: Re: [R] Boxplot Labels OK Hello, The answers you had in another thread could lead you to bp <- boxplot(DATA$ave, data= DATA, main= "Average Size") idx <- which(DATA$ave %in% bp$out) text(x= bp$group, y=

Re: [R] Boxplot Labels OK

2013-04-09 Thread Rui Barradas
Hello, The answers you had in another thread could lead you to bp <- boxplot(DATA$ave, data= DATA, main= "Average Size") idx <- which(DATA$ave %in% bp$out) text(x= bp$group, y= bp$out, labels= DATA$num[idx], cex = 0.7, pos = 4) Hope this helps, Rui Barradas Em 09-04-2013 17:31, Beatriz Gonzá

Re: [R] Boxplot Labels

2013-04-09 Thread David L Carlson
> From: r-help-boun...@r-project.org [mailto:r-help-bounces@r- > project.org] On Behalf Of John Kane > Sent: Tuesday, April 09, 2013 10:45 AM > To: Beatriz González Domínguez; R Help; r-help@r-project.org > Subject: Re: [R] Boxplot Labels > > p <- boxplot(dat1$ave, data= da

Re: [R] Boxplot Labels

2013-04-09 Thread Rui Barradas
nt 26 values potted? John Kane Kingston ON Canada -Original Message- From: aguitatie...@hotmail.com Sent: Tue, 9 Apr 2013 16:17:01 +0100 To: r-help-boun...@r-project.org, r-help@r-project.org Subject: [R] Boxplot Labels #Dear all, #Could anyone help me with the following? #DATA num <

[R] Boxplot Labels OK

2013-04-09 Thread Beatriz González Domínguez
Dear all, I have just sent an enquiry but probably I hadn’t expressed myself properly. Could anyone help me with the following? When I run the code on my data I get a boxplot with outliers identified by numbers 200 & 201. However, what I would like is to label these outliers with their corre

Re: [R] Boxplot Labels

2013-04-09 Thread John Kane
otted? John Kane Kingston ON Canada > -Original Message- > From: aguitatie...@hotmail.com > Sent: Tue, 9 Apr 2013 16:17:01 +0100 > To: r-help-boun...@r-project.org, r-help@r-project.org > Subject: [R] Boxplot Labels > > #Dear all, > > #Could anyone help me with th

Re: [R] Boxplot Labels

2013-04-09 Thread Jose Iparraguirre
| @ageukcampaigns -Original Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On Behalf Of Beatriz González Domínguez Sent: 09 April 2013 16:17 To: R Help; r-help@r-project.org Subject: [R] Boxplot Labels #Dear all, #Could anyone help me with the fo

[R] Boxplot Labels

2013-04-09 Thread Beatriz González Domínguez
#Dear all, #Could anyone help me with the following? #DATA num <- as.numeric(seq(100:125)) ave <- c(0.5, 1, 1.6, 2, 2, 2.3, 2.5, 2.4, 3, 3.2, 3.3, 4, 4.8, 3.5, 2.7, 3.1, 2.8, 3.5, 4.1, 2.0, 2.5, 2.1, 3.4, 2.5, 2.6, 7) DATA <- data.frame(cbind(num, ave)) rm(num, ave) #BOXPLOT x11() bp <- boxplot(

[R] Boxplot Labels

2013-04-09 Thread Beatriz González Domínguez
#Dear all, #Could anyone help me with the following? #DATA num <- as.numeric(seq(100:125)) ave <- c(0.5, 1, 1.6, 2, 2, 2.3, 2.5, 2.4, 3, 3.2, 3.3, 4, 4.8, 3.5, 2.7, 3.1, 2.8, 3.5, 4.1, 2.0, 2.5, 2.1, 3.4, 2.5, 2.6, 7) DATA <- data.frame(cbind(num, ave)) rm(num, ave) #BOXPLOT x11() bp <- boxplot(