Create a plot based on a data frame providing endpoints of intervals, colors, line weights etc.
ivplot(
X,
name = "",
file.name = "",
split = NULL,
Intervals = NULL,
xlim,
left.margin = 3,
x.ticks = NULL,
exp.labels = FALSE,
xlab = "",
title = "",
top.axis = FALSE,
use_color = TRUE,
vline = NULL,
device = "X11",
size = c(297, 210)/25.4/2,
font.family = "Courier",
cex.label = NULL,
...
)
A data frame providing data for creating one interval per row. See details below.
Name of file to produce
Name of file to produce
Name of column by which to divide the plot into groups.
A list defining what intervals or dots to output per each row.
Numeric vector of length 2. Limits for the horizontal axis.
Scalar. Size of left margin. If labels take too much space, increase this (default is 3)
Numeric vector.
Logical. Use log scale? Then print numeric values at x-ticks in the original (exponentiated) scale
Character.
Character; title.
Logical. Print top axis?
Logical. Use color in plot or black?
Scalar. Plot vertical line (will be plotted before intervals are
Character. To which device to output?
Numeric vector of length 2. Size of plot: vertical and horizontal sizes in inches.
Character. Font family (sans (Helvetica), serif (Times), mono (Courier), ...)
number, a factor to shrink the 'cex' of the labels, between 0 and 1
Other arguments passed to plot
The file name that was output; as a side effect a plot (a pdf file
if device="pdf"
.)
...