Skip to content
Prev 58477 / 398502 Next

Plotting a linear model object with R 2.0 for Mac OS X

Justin Manjourides wrote:

            
First plot the data, then add the line. That's mentioned in the docs and 
all good books about R:

  plot(data)
  abline(lmobject)

Uwe Ligges