-----Original Message-----
From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org]
On Behalf Of Rich Shepard
Sent: Wednesday, February 19, 2014 4:05 PM
To: r-help at r-project.org
Subject: [R] ISwR Plotting Issue
I'm trying to replicate the linear regression plot on pages 112-113 in
Peter Dalgaard's "Introductory Statistics with R" and getting the error
that
"plot.new has not been called yet."
A Web search on that error offered suggestions to run plot.new() or
x11(),
but all those do is put up an empty plotting window. My code, and R's
responses, follow:
Attaching package: ?ISwR?
The following object is masked from ?package:survival?:
lung
attach(thuesen)
plot(blood.glucose,short.velocity)
abline(lm(short.velocity ~ blood.glucose))
Error in int_abline(a = a, b = b, h = h, v = v, untf = untf, ...) :
plot.new has not been called yet
What have I missed here?
Rich