Re: [R] qqline function doesn't plot

2008-08-05 Thread Scotty Nelson
Thanks! -- View this message in context: http://www.nabble.com/qqline-function-doesn%27t-plot-tp18827175p18842548.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listi

Re: [R] qqline function doesn't plot

2008-08-05 Thread Uwe Ligges
Scotty Nelson wrote: I have a data vector x. When I try qqline(x) I get the following error: Error in int_abline(a = a, b = b, h = h, v = v, untf = untf, ...) : plot.new has not been called yet And a blank plot appears. Can anybody help? What am I doing wrong? qqline() is for add

Re: [R] qqline function doesn't plot

2008-08-05 Thread john seers (IFR)
Hi qqline does not do the plot. It adds a line to an existing plot. So you have to do something else first, like: qqnorm(x) qqline(x) JS --- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Scotty Nelson Sent: 05 August 2008 09:58 To: r-help@r-pro