Takes bar heights (height) and cutpoints (breaks), and constructs a line-only histogram from them using the function plot() (if lineonly==FALSE) or lines() (if lineonly==TRUE).
histline(
height,
breaks,
lineonly = FALSE,
outline = FALSE,
ylim = range(height),
xlab = "x",
ylab = "y",
det.plot = FALSE,
add = FALSE,
...
)
None
heights of histogram bars
cutpoints for x
if TRUE, drawn with plot; otherwise with lines to allow addition of current plot
if TRUE, only outline of histogram is plotted
limits for y axis
label for x axis
label for y axis
if TRUE, plot is of detection so yaxis limited to unit interval
should this plot add to a previous window
Additional unspecified arguments for plot
Jeff Laake and David L Miller