inst/PlackettLuce0/summary0.R

summary.PlackettLuce0 <- function(object,
                                  ref = NULL,
                                  ...) {
    coefs <- coef.PlackettLuce0(object, ref = ref)
    coefficients <- matrix(NA, nrow = length(coefs), ncol = 4,
                           dimnames = list(names(coefs),
                                           c("Estimate", "Std. Error",
                                             "z value", "Pr(>|z|)")))
    coefficients[,1] <- coefs
    se <- sqrt(diag(vcov(object, ref = ref)))
    coefficients[names(se), 2] <- se
    coefficients[attr(coefs, "ref"), 2] <- NA
    coefficients[,3] <- coefficients[,1]/coefficients[,2]
    coefficients[,4] <- 2 * pnorm(-abs(coefficients[, 3]))
    structure(list(call = object$call,
                   deviance = deviance(object),
                   aic = AIC(object),
                   df.residual = df.residual(object),
                   iter = object$iter,
                   coefficients = coefficients,
                   df = object$rank),
              class = "summary.PlackettLuce0")
}

#' @method print summary.PlackettLuce0
#' @importFrom stats printCoefmat
#' @export
print.summary.PlackettLuce0 <- function(x,
                                        digits = max(3L,
                                                     getOption("digits") - 3L),
                                        ...) {
    cat("Call: ", deparse(x$call), "\n", sep = "", fill = TRUE)

    if (length(coef(x))) {
        cat("Coefficients:\n")
        printCoefmat(x$coefficients, digits = digits, na.print = "NA", ...)
    }
    else cat("No coefficients\n")

    cat("\nResidual deviance: ",
        format(x$deviance, digits = max(5, digits + 1)), " on ",
        format(x$df.residual, digits = max(5, digits + 1)),
        " degrees of freedom\n")
    cat("AIC: ", format(x$aic, digits = max(4, digits + 1)), "\n")

    cat("Number of iterations: ",  x$iter, "\n", sep = "")
    invisible(x)
}

Try the PlackettLuce package in your browser

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

PlackettLuce documentation built on July 9, 2023, 7:12 p.m.