gap_barp.Rd
Displays a barplot with a missing range.
a vector of data values
the range of values to be left out
the proportion of bar width to bar spacing divided by 2. width=1 means no spaces between the bars.
labels for the bars.
color(s) in which to plot the values
title for the plot.
label for the x axis
label for the y axis
Optional x limits for the plot
optional y limits for the plot
optional x positions for the bars.
explicit positions for the y axis ticks
explicit labels for the y axis ticks.
arguments passed to barp.
The center positions of the bars.
Displays a barplot omitting a range of values on the X or Y axis. Typically used when there is a relatively large gap in the range of values represented as bar heights. See axis.break for a brief discussion of plotting on discontinuous coordinates.
If the user does not ask for specific y limits, the function will calculate limits based on the range of the data values. If passing specific limits, remember to subtract the gap from the upper or lower limit.
oneout<-c(rnorm(5,sd=5),20,rnorm(5,sd=5))
gap_barp(oneout,gap=c(8,16),xlab="Index",height.at=c(-5,0,5,20),
ylab="Group values",main="Barplot with gap above zero")
oneout[6]<--20
gap_barp(oneout,gap=c(-8,-16),xlab="Index",height.at=c(-20,-5,0,5),
ylab="Group values",main="Barplot with gap below zero")