Extended version of R barplot function, enabling x positioning of the bars.
hsBarplot2(
myHeight,
myPos = NULL,
myWidth = 1,
myBeside = FALSE,
myInnerSpace = 0,
myValLabs = TRUE,
dx = 0,
dy = 0,
dbg = FALSE,
...
)
Vector or matrix containing the bar heights, see R's barplot function.
Vector containing the x-positions of the bars/bar groups.
Bar widths. If bars are to be stacked (isp = NULL, see below) w represents the widths of the stacked bars. If bars shall be plotted side by side instead of stacked (isp >= 0) w represents the widths of the bars within one and the same bar group. Corresponding bars of different groups will always have the same width.
If TRUE, bars within a bar group are arranged side by side instead of stacked.
"Inner" space between bars of the same bar group (only relevant if y is a matrix and not a vector). If NULL, bars of the same bar group will be stacked
whether to put value labels on top of the bars
x offset for text labels. Default: 0
y offset for text labels. Default: 0
whether to print debug messages or not
further arguments passed to barplot