On Nov 19, 2010, at 11:14 PM, Stephen Liu wrote:

Hi Josh,


with(ToothGrowth, plot(dose, len))
abline(lm(len ~ dose, data = ToothGrowth))

ToothGrowth
abline(lm(len ~ dose, data = ToothGrowth))
Error in int_abline(a = a, b = b, h = h, v = v, untf = untf, ...) :
 plot.new has not been called yet

ToothGrowth
attach(ToothGrowth)
abline(lm(len ~ dose, data = ToothGrowth))
Error in int_abline(a = a, b = b, h = h, v = v, untf = untf, ...) :
 plot.new has not been called yet

What happens when you follow the directions... i.e. type:

plot.new()    #???




Sorry, still fail only an empty grey background diagram displayed.


B.R.
Stephen L



----- Original Message ----
From: Joshua Wiley <jwiley.ps...@gmail.com>
To: Stephen Liu <sati...@yahoo.com>
Cc: r-help@r-project.org
Sent: Sat, November 20, 2010 10:50:42 AM
Subject: Re: [R] An empty grey diagram

Hi Stephen,

Please try:

with(ToothGrowth, plot(dose, len))
abline(lm(len ~ dose, data = ToothGrowth))


Cheers,

Josh

On Fri, Nov 19, 2010 at 6:44 PM, Stephen Liu <sati...@yahoo.com> wrote:
Hi folks,

Win7 64bit
R 1.12.0

I run following command on R:-

ToothGrowth
attach(ToothGrowth)
plot(dose,len)
matrics=lm(len~dose)

abline(metrics)
Error in int_abline(a = a, b = b, h = h, v = v, untf = untf, ...) :
plot.new has not been called yet

Only a grey diagram is displayed without content


plot(abline(metrics))
Error in int_abline(a = a, b = b, h = h, v = v, untf = untf, ...) :
plot.new has not been called yet

With the same result.


Pls advise what does it mean?  How to rectify it?  TIA


B.R.
Stephen L




______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.




--
Joshua Wiley
Ph.D. Student, Health Psychology
University of California, Los Angeles
http://www.joshuawiley.com/




______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

David Winsemius, MD
West Hartford, CT

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to