| PGE.barplot(ProGenExpress) | R Documentation |
Please see barplot, as this is exactly the same except a new argument
is present, add, that determines whether or not plot.new() is called
PGE.barplot(height, width = 1, space = NULL, names.arg = NULL, legend.text = NULL, beside = FALSE,
horiz = FALSE, density = NULL, angle = 45, col = NULL, border = par("fg"), main = NULL,
sub = NULL, xlab = NULL, ylab = NULL, xlim = NULL, ylim = NULL, xpd = TRUE, axes = TRUE,
axisnames = TRUE, cex.axis = par("cex.axis"), cex.names = par("cex.axis"), inside = TRUE,
plot = TRUE, axis.lty = 0, offset = 0, add = FALSE, ...)
Please see barplot
add |
If TRUE, plot.new() is NOT called |
Please see barplot
Please see barplot
Very Slightly Altered by Michael Watson, for original author please see barplot
# please see ?barplot
tN <- table(Ni <- rpois(100, lambda=5))
r <- barplot(tN, col='gray')
#- type = "h" plotting *is* 'bar'plot
lines(r, tN, type='h', col='red', lwd=2)
barplot(tN, space = 1.5, axisnames=FALSE, sub = "barplot(..., space= 1.5, axisnames = FALSE)")