Re: [R] graph displays

2012-06-26 Thread John Kane
John Kane Kingston ON Canada > -Original Message- > From: ricardosousa2...@clix.pt > Sent: Tue, 26 Jun 2012 01:24:17 -0700 (PDT) > To: r-help@r-project.org > Subject: Re: [R] graph displays > > > > Good morning, > Thanks for help. > I can explain better wh

Re: [R] graph displays

2012-06-26 Thread Jim Lemon
On 06/26/2012 06:24 PM, MSousa wrote: Good morning, Thanks for help. I can explain better what I am trying to do. I'm trying to read data from a file, separated by a tab, with the following code. Dataset<-read.table("C:/Users/Administrator/Desktop/R/graph.txt",sep="\t", quote="\"",header = TR

Re: [R] graph displays

2012-06-26 Thread MSousa
Good morning, Thanks for help. I can explain better what I am trying to do. I'm trying to read data from a file, separated by a tab, with the following code. Dataset<-read.table("C:/Users/Administrator/Desktop/R/graph.txt",sep="\t", quote="\"",header = TRUE) View(Dataset) dput(Dataset) > View(

Re: [R] graph displays

2012-06-25 Thread John Kane
xx <- structure(list(X1000s = c(47L, 37L, 17L), X600s = c(63L, 64L, 62L), X500s = c(75L, 45L, 25L), X250s = c(116L, 11L, 66L), X100s = c(125L, 25L, 12L), X50s = c(129L, 19L, 29L), X10s = c(131L, 61L, 91L), X5s = c(131L, 131L, 171L), X3s = c(131L, 186L, 186L), X1s = c(131L, 186L, 186L))

Re: [R] graph displays

2012-06-25 Thread Sarah Goslee
There's no way we can tell you the "best way" to display your information, because we don't know anything about it. The best display method has a lot to do with what the data are, and what you're trying to illustrate. That said, here are two possibilities, one using the bar graph you requested, and