Re: [R] dotplot: labeling coordinates for each point

2009-05-08 Thread Qifei Zhu
Thank you Deepayan! It works perfectly. Best, Tony -Original Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On Behalf Of Deepayan Sarkar Sent: Thursday, May 07, 2009 12:20 PM To: Qifei Zhu Cc: r-help@r-project.org Subject: Re: [R] dotplot: labeling

Re: [R] dotplot: labeling coordinates for each point

2009-05-06 Thread Qifei Zhu
s say 90 in this case. The labels should be in (x,y) format, which is (Atlanta, 100) in this case. Appreciate a lot for your help! Best, Tony -Original Message- From: Deepayan Sarkar [mailto:deepayan.sar...@gmail.com] Sent: Wednesday, May 06, 2009 8:40 PM To: Qifei Zhu Cc: David Winsemiu

Re: [R] dotplot: labeling coordinates for each point

2009-05-05 Thread Qifei Zhu
Best, Tony -Original Message- From: Deepayan Sarkar [mailto:deepayan.sar...@gmail.com] Sent: Sunday, April 26, 2009 2:32 PM To: Qifei Zhu Cc: David Winsemius; r-help@r-project.org Subject: Re: [R] dotplot: labeling coordinates for each point On 4/26/09, Qifei Zhu wrote: >

Re: [R] dotplot: labeling coordinates for each point

2009-04-26 Thread Qifei Zhu
vid Winsemius [mailto:dwinsem...@comcast.net] Sent: Friday, April 24, 2009 10:48 PM To: Qifei Zhu Cc: r-help@r-project.org Subject: Re: [R] dotplot: labeling coordinates for each point On Apr 24, 2009, at 9:23 PM, Qifei Zhu wrote: > I used dotplot to draw a graph for a dataset with size of 100.

[R] dotplot: labeling coordinates for each point

2009-04-24 Thread Qifei Zhu
Hi all, I used dotplot to draw a graph for a dataset with size of 100. Since the x-axis are all texts, so they are mixed up and not readable. Is there any way to make it readable or how can I add labels to all the points with its (x,y) coordinates? Thanks for your help. Best, Tony

Re: [R] Welcome to the "R-help" mailing list

2009-04-18 Thread Qifei Zhu
It works. Thanks! -Original Message- From: mike.lw...@gmail.com [mailto:mike.lw...@gmail.com] On Behalf Of Mike Lawrence Sent: Saturday, April 18, 2009 1:30 PM To: Qifei Zhu Cc: r-help@r-project.org Subject: Re: [R] Welcome to the "R-help" mailing list When plotting in loops, y

Re: [R] Welcome to the "R-help" mailing list

2009-04-18 Thread Qifei Zhu
Hi all, I'm a newbie R developer, am trying to dotplot a few graphs using a for loop. The following code works fine but once I wanna plot inside a loop, nothing happens. > for(i in 1:1){dotplot(y~x)} > y <- c(1,2,3) > x <- c('a','b','c') > dotplot(y~x) > for (i in 1:3) {dotplot(y~x)} (y and x de