lineplot
From Rcmdr v2.0-4
by John Fox
Plot a one or more lines.
This function plots lines for one or more variables against another variable --- typically time series against time.
- Keywords
- hplot
Usage
lineplot(x, ..., legend)
Arguments
- x
- variable giving horizontal coordinates.
- ...
- one or more variables giving vertical coordinates.
- legend
- plot legend? Default is
TRUE
if there is more than one variable to plot andFALSE
is there is just one.
Value
- Produces a plot; returns
NULL
invisibly.
Examples
data(Bfox, package="car")
Bfox$time <- as.numeric(rownames(Bfox))
with(Bfox, lineplot(time, menwage, womwage))
Community examples
Looks like there are no examples yet.