Re: [R] questions on adding reference line?

2006-11-19 Thread Prof Brian Ripley
Your example is incomplete (what is x?), but axis(1, at=0.5) may be what you are looking for. On Sun, 19 Nov 2006, zhijie zhang wrote: Dear Ruser, I use abline() function to add the reference line successfully, but i can't display the values corresponding to the reference line on the x/y

[R] questions on adding reference line?

2006-11-18 Thread zhijie zhang
Dear Ruser, I use abline() function to add the reference line successfully, but i can't display the values corresponding to the reference line on the x/y axis, anybody knows how to display it? *My simulated programs:* y-rnorm(50) plot(x,y) abline(v=0.5) *#my question is how to display x=0.5

Re: [R] questions on adding reference line?

2006-11-18 Thread Gabor Grothendieck
Try: axis(1, 0.5, tick = TRUE) On 11/18/06, zhijie zhang [EMAIL PROTECTED] wrote: Dear Ruser, I use abline() function to add the reference line successfully, but i can't display the values corresponding to the reference line on the x/y axis, anybody knows how to display it? *My simulated