Re: [R] Adjusting format of boxplot

2012-07-13 Thread Bert Gunter
t;>> ----------**--- >>> David >>> >>> --**--- >>> David L Carlson >>> Associate Professor of Anthropology >>> Texas A&M University >>> College Station, TX 77840-4352 >

Re: [R] Adjusting format of boxplot

2012-07-13 Thread Gerrit Eichner
From: "darnold" To: r-help@r-project.org Sent: Thursday, July 12, 2012 7:53:33 PM Subject: Re: [R] Adjusting format of boxplot Added your code: flies <- read.table("example12_1.dat",header=TRUE,sep="\t") flies$group <- factor(flies$group,5:1) levels(f

Re: [R] Adjusting format of boxplot

2012-07-13 Thread Ivan Calandra
d - David L Carlson Associate Professor of Anthropology Texas A&M University College Station, TX 77840-4352 - Original Message - From: "darnold" To: r-help@r-project.org Sent: Thursday, July 12, 2012 7:53:33 PM Subject: Re: [R] Adjustin

Re: [R] Adjusting format of boxplot

2012-07-12 Thread Peter Ehlers
lson Associate Professor of Anthropology Texas A&M University College Station, TX 77840-4352 - Original Message - From: "darnold" To: r-help@r-project.org Sent: Thursday, July 12, 2012 7:53:33 PM Subject: Re: [R] Adjusting format of boxplot Added your code: flies <- r

Re: [R] Adjusting format of boxplot

2012-07-12 Thread Peter Ehlers
27;frame = FALSE' to the boxplot() call. Peter Ehlers - David - David L Carlson Associate Professor of Anthropology Texas A&M University College Station, TX 77840-4352 - Original Message - From: "darnold" To: r-help@r-project.org Sent

Re: [R] Adjusting format of boxplot

2012-07-12 Thread David L Carlson
te Professor of Anthropology Texas A&M University College Station, TX 77840-4352 - Original Message - From: "darnold" To: r-help@r-project.org Sent: Thursday, July 12, 2012 7:53:33 PM Subject: Re: [R] Adjusting format of boxplot Added your code: flies <- read.tab

Re: [R] Adjusting format of boxplot

2012-07-12 Thread darnold
Added your code: flies <- read.table("example12_1.dat",header=TRUE,sep="\t") flies$group <- factor(flies$group,5:1) levels(flies$group) <- paste0("Group ",5:1) boxplot(long ~ group, data = flies, pars = list(las=1, ylim=c(10,110), xaxt="n", bty="n"), horizontal = TRUE,

Re: [R] Adjusting format of boxplot

2012-07-12 Thread David L Carlson
352 - Original Message - From: "darnold" To: r-help@r-project.org Sent: Thursday, July 12, 2012 5:01:19 PM Subject: Re: [R] Adjusting format of boxplot Looks like data was not attached. Here is is. long group 40 1 37 1 44 1 47 1 47 1 47 1 68 1 47 1 54 1 61 1 7

Re: [R] Adjusting format of boxplot

2012-07-12 Thread darnold
Looks like data was not attached. Here is is. longgroup 40 1 37 1 44 1 47 1 47 1 47 1 68 1 47 1 54 1 61 1 71 1 75 1 89 1 58 1 59 1 62 1 79 1 96 1 58 1 62 1 70 1 72 1 74 1 96

[R] Adjusting format of boxplot

2012-07-12 Thread David Arnold
Hi, I managed to use the attached data set and figure out the following: flies <- read.table("example12_1.dat",header=TRUE,sep="\t") boxplot(long ~ group, data = flies, horizontal = TRUE, col = "red") I'm very new to R and would like some help with the following: 1. Chan