R/plot.FDR.R

Defines functions plot.FDR

Documented in plot.FDR

plot.FDR <- function(x,xlab="Threshold",ylab="FDR",...) {

    if (!inherits(x,"FDR")) {
        stop("'x' must be of class 'FDR'")
    }

    plot(x=x$thresh.values,y=x$FDRs,xlab=xlab,ylab=ylab,...)

}

Try the FLLat package in your browser

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

FLLat documentation built on May 2, 2019, 4:51 a.m.