R/printSSglm.R

Defines functions print.ss.glm

#' @method print ss.glm
#' @export
print.ss.glm <- function(x, ...){
    d1 <- as.data.frame(x$ss)
     names(d1) <- "ss"
     print(d1)
     d2 <- as.data.frame(x$epc)
     names(d2) <- "epc"
     print(d2)
 }

Try the LogisticDx package in your browser

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

LogisticDx documentation built on May 2, 2019, 6:15 p.m.