PGE.barplot(ProGenExpress)R Documentation

Slightly customised version of barplot

Description

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

Usage

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, ...)

Arguments

Please see barplot

add If TRUE, plot.new() is NOT called

Details

Please see barplot

Value

Please see barplot

Author(s)

Very Slightly Altered by Michael Watson, for original author please see barplot

See Also

barplot

Examples


     # 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)")

[Package ProGenExpress version 1.0 Index]