R/coef.R

Defines functions coef.cumres

##' @export
coef.cumres <- function(object,...) {
    res <- with(object, data.frame(KS, CvM))
    colnames(res) <- c("p-value(Sup)", "p-value(L2)")
    rownames(res) <- object$variable
    res
}

Try the gof package in your browser

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

gof documentation built on March 16, 2020, 1:07 a.m.