R/plot.group1.R

#'Plot group1 statistics
#'
#'Plots group1 statistics using matplot
#'@param x a matrix of group1 staistics
#'@param ... additional arguments passed to matplot
#'@export
`plot.group1` <-
function (x, ...) 
{	
    matplot(1:ncol(x), t(x), xaxt = "n", ylab = "Average Discharge", 
        ...)
    axis(1, at = 1:ncol(x), labels = dimnames(x)[[2]])
}

Try the IHA package in your browser

Any scripts or data that you put into this service are public.

IHA documentation built on May 2, 2019, 5:15 p.m.