Re: [R] Boxplot Labels OK

2013-04-10 Thread Jose Iparraguirre
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 identified by numbers 200 201. However, what I would like

[R] Boxplot Labels solved

2013-04-10 Thread Beatriz González Domínguez
- 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 - Boxplot(DATA$ave, data= DATA, main

[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 -

[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 -

Re: [R] Boxplot Labels

2013-04-09 Thread Jose Iparraguirre
- 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 following? #DATA num - as.numeric(seq(100:125)) ave - c

Re: [R] Boxplot Labels

2013-04-09 Thread John Kane
-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 - as.numeric(seq(100:125)) ave - c(0.5, 1, 1.6, 2, 2

[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

Re: [R] Boxplot Labels

2013-04-09 Thread Rui Barradas
- 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 - 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

Re: [R] Boxplot Labels

2013-04-09 Thread David L Carlson
@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= dat1, main= Average Size, yaxt = n) text(1.1, , y = max(datDAT1$ave), label = 26, cex

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ález

Re: [R] Boxplot Labels OK

2013-04-09 Thread Rui Barradas
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= bp$out, labels= DATA$num