Plot a one or more lines.
This function plots lines for one or more variables against another variable — typically time series against time.
lineplot(x, ..., legend)
x |
variable giving horizontal coordinates. |
... |
one or more variables giving vertical coordinates. |
legend |
plot legend? Default is |
Produces a plot; returns NULL
invisibly.
John Fox jfox@mcmaster.ca
if (require("car")){ data(Bfox) Bfox$time <- as.numeric(rownames(Bfox)) with(Bfox, lineplot(time, menwage, womwage)) }
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.