https://github.com/cran/fields
Raw File
Tip revision: e67a1fb4dcdbae26b03d4c4fe859ea995aac2720 authored by Doug Nychka on 12 November 2007, 00:00:00 UTC
version 4.1
Tip revision: e67a1fb
print.qsreg.r
"print.qsreg" <-
function (x, ...) 
{
    digits <- 4
    c1 <- "Number of Observations:"
    c2 <- (x$N)
    c1 <- c(c1, "Effective degrees of freedom:")
    c2 <- c(c2, format(round(x$trace[x$ind.cv.ps], 1)))
    c1 <- c(c1, "Residual degrees of freedom:")
    c2 <- c(c2, format(round(x$N - x$trace[x$ind.cv.ps], 1)))
    c1 <- c(c1, "Log10(lambda) ")
lambda<- x$cv.grid[,1]
    c2 <- c(c2, format(round(log10(lambda[x$ind.cv.ps]), 2)))
    sum <- cbind(c1, c2)
    dimnames(sum) <- list(rep("", dim(sum)[1]), rep("", dim(sum)[2]))
    cat("Call:\n")
    dput(x$call)
    print(sum, quote = FALSE)
    invisible(x)
}
back to top