Learn R Programming

MPV (version 1.64)

quadline: Quadratic Overlay

Description

Overlays a quadratic curve to a fitted quadratic model.

Usage

quadline(lm.obj, ...)

Value

The function superimposes a quadratic curve onto an existing scatterplot.

Arguments

lm.obj

A lm object (a quadratic fit)

...

Other arguments to the lines function; e.g. col

Author

W.J. Braun

See Also

lm

Examples

Run this code
data(p4.18)
attach(p4.18)
y.lm <- lm(y ~ x1 + I(x1^2))
plot(x1, y)
quadline(y.lm)
detach(p4.18)

Run the code above in your browser using DataLab