Re: [R] dotchart - problem with gcolor

2008-01-19 Thread John Kane
Excellent, it does exactly what I wanted.. I had never encountered "unname" before. Thanks very much. --- Gabor Grothendieck <[EMAIL PROTECTED]> wrote: > Try this: > > aa <- c(a = 1, b = 2, c = 3) > dotchart(unname(aa), col = 1:3) > axis(side = 2, seq_along(aa), names(aa)) > > > > On Jan

Re: [R] dotchart - problem with gcolor

2008-01-19 Thread Gabor Grothendieck
Try this: aa <- c(a = 1, b = 2, c = 3) dotchart(unname(aa), col = 1:3) axis(side = 2, seq_along(aa), names(aa)) On Jan 19, 2008 5:01 PM, John Kane <[EMAIL PROTECTED]> wrote: > > --- Gabor Grothendieck <[EMAIL PROTECTED]> > wrote: > > > Use col= for that. > > Well yes, but I was trying to get th

Re: [R] dotchart - problem with gcolor

2008-01-19 Thread John Kane
--- Gabor Grothendieck <[EMAIL PROTECTED]> wrote: > Use col= for that. Well yes, but I was trying to get the points on the graph coloured and the value labels uncoloured (that is black). Thanks > > On Jan 19, 2008 4:31 PM, John Kane > <[EMAIL PROTECTED]> wrote: > > Thank you Gabor. The ex

Re: [R] dotchart - problem with gcolor

2008-01-19 Thread Gabor Grothendieck
Use col= for that. On Jan 19, 2008 4:31 PM, John Kane <[EMAIL PROTECTED]> wrote: > Thank you Gabor. The examples are excellent. > > I was misreading the intend of gcolor. I had thought > that it would allow me to colour all of the value > labels . > > > --- Gabor Grothendieck <[EMAIL PROTECTED]>

Re: [R] dotchart - problem with gcolor

2008-01-19 Thread John Kane
Thank you Gabor. The examples are excellent. I was misreading the intend of gcolor. I had thought that it would allow me to colour all of the value labels . --- Gabor Grothendieck <[EMAIL PROTECTED]> wrote: > Or even one group if its named: > > dotchart(cbind(a = aa), gcolor = "red") > >

Re: [R] dotchart - problem with gcolor

2008-01-19 Thread Gabor Grothendieck
Or even one group if its named: dotchart(cbind(a = aa), gcolor = "red") On Jan 19, 2008 3:18 PM, Gabor Grothendieck <[EMAIL PROTECTED]> wrote: > You only have one group. Try it with two groups: > > dotchart(cbind(a = aa, b = aa), gcolor = "red") > > > > On Jan 19, 2008 2:48 PM, John Kane <[EMAIL

Re: [R] dotchart - problem with gcolor

2008-01-19 Thread Gabor Grothendieck
You only have one group. Try it with two groups: dotchart(cbind(a = aa, b = aa), gcolor = "red") On Jan 19, 2008 2:48 PM, John Kane <[EMAIL PROTECTED]> wrote: > It a trivial point but can anyone tell me why gcolor > is not working here? I thought that I should be > getting the letters in red.

[R] dotchart - problem with gcolor

2008-01-19 Thread John Kane
It a trivial point but can anyone tell me why gcolor is not working here? I thought that I should be getting the letters in red. lcolor seems to work just fine. aa <- c(3,6,3,5,8) lbs <- LETTERS[1:5] dotchart(rev(aa), pch=16, labels=(rev(lbs)), lcolor="blue", gcolor="red") Looking for