Re: [R] plot graph by first letter

2012-07-13 Thread arun
Hello, This information is new.  Are you able to import data from access? A.K. - Original Message - From: imnew To: r-help@r-project.org Cc: Sent: Thursday, July 12, 2012 9:52 PM Subject: Re: [R] plot graph by first letter Hi, for my dataset is actually retrieve from a access file

Re: [R] plot graph by first letter

2012-07-12 Thread imnew
t1[grepl("[A].*",dat1$Name),] dat2 Name Age 1Angel 20 2 Amelia 20 6 Angeline 23 rownames(dat2)<-1:nrow(dat2) #Now you might be okay to plot. ?plot() A.K. - Original Message - From: imnew <[hidden email]> To: [hidden email] Cc: Sent: Thurs

Re: [R] plot graph by first letter

2012-07-12 Thread arun
Sent: Thursday, July 12, 2012 4:15 AM Subject: [R] plot graph by first letter Hi all, may i know is it possible to plot a graph by first letter? for example: Name:                      Age: Angel                        20 Amelia                      20 Bernard                 

Re: [R] plot graph by first letter

2012-07-12 Thread John Kane
I really am not sure of the question but perhaps ?order for a start? John Kane Kingston ON Canada > -Original Message- > From: jubil...@live.com.sg > Sent: Thu, 12 Jul 2012 01:15:26 -0700 (PDT) > To: r-help@r-project.org > Subject: [R] plot graph by first letter > &g

Re: [R] plot graph by first letter

2012-07-12 Thread Sarah Goslee
This looks a bit like homework, and makes no attempt whatsoever to follow the posting guide or present previous work. But still, I'd start with ?grepl, and move on to use rseek.org to look for functions for whatever kind of plot you need to make. The R Graph Gallery is also a good resource. And eve

[R] plot graph by first letter

2012-07-12 Thread imnew
Hi all, may i know is it possible to plot a graph by first letter? for example: Name: Age: Angel20 Amelia 20 Bernard 19 Stephanie 20 Vanessa 22 Angeline 23 Camel

[R] plot graph(quantile regression for panel data)

2010-11-09 Thread ywh123
Hi,everyone I have two group data. x=c(0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9) y=c(1,2,3,4,5,6,7,8,9) and the confidence interval of y [0.9,1.1],[1.9,2.1],[2.9,3.1] [3.9,4.1],[4.9,5.1],[5.9,6.1] [6.9,7.1],[7.9,8.1],[8.9,9.1] How can I get the graph? as follows http://r.789695.n4.nabble.com/file/n3

Re: [R] Plot graph

2010-01-04 Thread Sarah Goslee
The first one is one plot created with calls to lines() and to abline(). Yours is seven different plots. That should be enough to get you started. This looks like it might be homework - if so, any other questions should go to your instructor. If not, a reproducible example would be far more likely

[R] Plot graph

2010-01-04 Thread cirtey
Hi; I want to obtain this graphic. http://n4.nabble.com/file/n998283/plot.gif Instead whith my code : par(mfrow=c(1,7),mar=c(0,0,0,0)) plot(EntreesMoyennesMensuelles2003, type="l",main="2003",col="yellow") plot(EntreesMoyennesMensuelles2004, type="l",main="2004",col="red") plot(EntreesMoyennesMen

Re: [R] plot graph with error bars trouble

2007-10-02 Thread Jim Lemon
Marcelo Laia wrote: > ... > ... but it plot the same point for one > Mutant before the some point of other Mutant in the same Time. > > I uploaded a .ps file to divshare for clarify what I want to explain. > http://www.divshare.com/download/2182890-49c > > and I uploaded a true dataset: > http:/

Re: [R] plot graph with error bars trouble

2007-10-01 Thread Marcelo Laia
Dear Ben Bolker, Hadley Wickham, Jim Lemon and all I'm very thank to you! I tried all suggestion and I wiil comments it next. Ben Bolker suggestion is very nice and I did a little changes in col=c(1,1),pch=c(1,16) and I include a xlab, ylab and a legend(5, 4, c("02H02","306"), pch = c(1,16), co

Re: [R] plot graph with error bars trouble

2007-10-01 Thread Gabor Grothendieck
On 10/1/07, hadley wickham <[EMAIL PROTECTED]> wrote: > > These seem nearly identical to what you can get with R-Forge or with > > TortoiseSVN (and likely other svn clients too). Since any developer > > is likely to have an svn client a web interface more sophisticated than > > what is already ava

Re: [R] plot graph with error bars trouble

2007-10-01 Thread hadley wickham
> These seem nearly identical to what you can get with R-Forge or with > TortoiseSVN (and likely other svn clients too). Since any developer > is likely to have an svn client a web interface more sophisticated than > what is already available via the net has less utility than if this info were > n

Re: [R] plot graph with error bars trouble

2007-10-01 Thread Gabor Grothendieck
On 10/1/07, hadley wickham <[EMAIL PROTECTED]> wrote: > On 10/1/07, Gabor Grothendieck <[EMAIL PROTECTED]> wrote: > > On 10/1/07, hadley wickham <[EMAIL PROTECTED]> wrote: > > > > > > The biggest drawback (to me) to both google code and R-forge, is their > > > failure to offer a nice interface to b

Re: [R] plot graph with error bars trouble

2007-10-01 Thread hadley wickham
On 10/1/07, Gabor Grothendieck <[EMAIL PROTECTED]> wrote: > On 10/1/07, hadley wickham <[EMAIL PROTECTED]> wrote: > > > > The biggest drawback (to me) to both google code and R-forge, is their > > failure to offer a nice interface to browser the svn repository and > > view the timeline of changes.

Re: [R] plot graph with error bars trouble

2007-10-01 Thread Gabor Grothendieck
On 10/1/07, hadley wickham <[EMAIL PROTECTED]> wrote: > > The biggest drawback (to me) to both google code and R-forge, is their > failure to offer a nice interface to browser the svn repository and > view the timeline of changes. I particularly like trac (e.g. > http://src.ggobi.org/) despite it'

Re: [R] plot graph with error bars trouble

2007-10-01 Thread hadley wickham
> >> It's something I have thought a little bit about, but I haven't made > >> much progress. Ideally, if it's something that I do for ggplot2, I > >> should do it for all my other R packages too. > > I don't see why doing it for *some* package(s) should entail > doing it for all of the

Re: [R] plot graph with error bars trouble

2007-10-01 Thread Martin Maechler
> "GaGr" == Gabor Grothendieck <[EMAIL PROTECTED]> > on Sun, 30 Sep 2007 21:15:37 -0400 writes: GaGr> On 9/30/07, hadley wickham <[EMAIL PROTECTED]> wrote: >> On 9/30/07, jiho <[EMAIL PROTECTED]> wrote: >> > On 2007-September-30 , at 22:40 , hadley wickham wrote: >> >

Re: [R] plot graph with error bars trouble

2007-10-01 Thread Jim Lemon
Marcelo Laia wrote: > Hi, > > I have a data set like this: > > MutantRepTime OD > 02H02100.029 > 02H02200.029 > 02H02300.023 > 02H02180.655 > 02H02280.615 > 02H02380.557 > 02H021121.776 > 02H0221

Re: [R] plot graph with error bars trouble

2007-09-30 Thread Gabor Grothendieck
On 9/30/07, hadley wickham <[EMAIL PROTECTED]> wrote: > On 9/30/07, jiho <[EMAIL PROTECTED]> wrote: > > On 2007-September-30 , at 22:40 , hadley wickham wrote: > > >> hadley wickham wrote: > > >>> [...] > > >> PS if one specifies "errorbars" without specifying min and max one > > >> gets > > >> th

Re: [R] plot graph with error bars trouble

2007-09-30 Thread hadley wickham
On 9/30/07, jiho <[EMAIL PROTECTED]> wrote: > On 2007-September-30 , at 22:40 , hadley wickham wrote: > >> hadley wickham wrote: > >>> [...] > >> PS if one specifies "errorbars" without specifying min and max one > >> gets > >> the error > >> > >> Error in rbind(max, max, max, min, min, min) : > >

Re: [R] plot graph with error bars trouble

2007-09-30 Thread jiho
On 2007-September-30 , at 22:40 , hadley wickham wrote: >> hadley wickham wrote: >>> [...] >> PS if one specifies "errorbars" without specifying min and max one >> gets >> the error >> >> Error in rbind(max, max, max, min, min, min) : >> cannot coerce type closure to list vector >> >>

Re: [R] plot graph with error bars trouble

2007-09-30 Thread hadley wickham
> hadley wickham wrote: > > I'd do this a little differently, using the reshape > > (http://had.co.nz/reshape) and ggplot2 (http://had.co.nz/ggplot2) > > packages: > > > > library(reshape) > > library(ggplot2) > > > > # Get data in format required for reshape > > df <- rename(df, c("OD" = "value"))

Re: [R] plot graph with error bars trouble

2007-09-30 Thread Ben Bolker
hadley wickham wrote: > I'd do this a little differently, using the reshape > (http://had.co.nz/reshape) and ggplot2 (http://had.co.nz/ggplot2) > packages: > > library(reshape) > library(ggplot2) > > # Get data in format required for reshape > df <- rename(df, c("OD" = "value")) > > # Summarise and

Re: [R] plot graph with error bars trouble

2007-09-30 Thread hadley wickham
On 9/30/07, Ben Bolker <[EMAIL PROTECTED]> wrote: > Marcelo Laia gmail.com> writes: > > > > > Hi, > > > > I have a data set like this: > > > > [snip] > > > I need to plot a graph OD over the time for each one mutant with error bars. > > > > > > > ## I put your data in a temporary file, this reads

Re: [R] plot graph with error bars trouble

2007-09-30 Thread Ben Bolker
Marcelo Laia gmail.com> writes: > > Hi, > > I have a data set like this: > [snip] > I need to plot a graph OD over the time for each one mutant with error bars. > > ## I put your data in a temporary file, this reads it x = read.table("tempdata.txt",header=TRUE) ## compute means and sta

[R] plot graph with error bars trouble

2007-09-28 Thread Marcelo Laia
Hi, I have a data set like this: MutantRepTime OD 02H02100.029 02H02200.029 02H02300.023 02H02180.655 02H02280.615 02H02380.557 02H021121.776 02H02212 1.859 02H023121.668 02H02