Re: [R] points marking

2010-06-22 Thread khush ........
-- > > Gregory (Greg) L. Snow Ph.D. > > Statistical Data Center > > Intermountain Healthcare > > greg.s...@imail.org > > 801.408.8111 > > > > *From:* khush [mailto:bioinfo.kh...@gmail.com] > *Sent:* Monday, June 14, 2010 11:21 PM > *To:* G

Re: [R] points marking

2010-06-14 Thread Greg Snow
are greg.s...@imail.org 801.408.8111 From: khush [mailto:bioinfo.kh...@gmail.com] Sent: Saturday, June 12, 2010 5:38 AM To: Greg Snow Cc: r-help@r-project.org; Petr PIKAL Subject: Re: [R] points marking Hi, Well Thanks for letting me know that pch is of no use with segments petr. I am

Re: [R] points marking

2010-06-12 Thread khush ........
.s...@imail.org > > 801.408.8111 > > > > *From:* khush [mailto:bioinfo.kh...@gmail.com] > *Sent:* Friday, June 11, 2010 12:00 AM > *To:* Greg Snow > *Cc:* r-help@r-project.org > *Subject:* Re: [R] points marking > > > > Dear Gregory , > > Thnaks for your r

Re: [R] points marking

2010-06-11 Thread Greg Snow
fo.kh...@gmail.com] Sent: Friday, June 11, 2010 12:00 AM To: Greg Snow Cc: r-help@r-project.org Subject: Re: [R] points marking Dear Gregory , Thnaks for your reply and help. I am explaining you my problems again, below is my script for the same . Dom <-c (195,568,559) fkbp <- barplot (Dom,

Re: [R] points marking

2010-06-10 Thread Petr PIKAL
Hi I am not sure if you can do what you want. Segments are not points so your pch option is (I believe) ignored. You could play with lmitre and lend parameters, but it probably would not help much. You cold try to look at ?symbols but you probably need to change source code to suit your needs.

Re: [R] points marking

2010-06-10 Thread khush ........
Dear Gregory , Thnaks for your reply and help. I am explaining you my problems again, below is my script for the same . Dom <-c (195,568,559) fkbp <- barplot (Dom, col="black", xlab="", border = NA, space = 7, xlim=c(0,650), ylim =c(0, 87), las = 2, horiz = TRUE) axis (1, at = seq(0,600,10), l

Re: [R] points marking

2010-06-10 Thread Greg Snow
Your question is not really clear, do either of these examples do what you want? with(anscombe, plot(x1, y2, ylim=range(y2,y3)) ) with(anscombe, points(x1, y3, col='blue', pch=2) ) with(anscombe, segments(x1, y2, x1, y3, col=ifelse( y2>y3, 'green','red') ) ) with(anscombe, plot(x1, y2, ylim=