TABLE OF CONTENTS


S3Methods/print.splinesurv [ Functions ]

NAME

    print.splinesurv --- print a splinesurv object

FUNCTION

Prints the posterior mean of splinesurv fit coefficients.

SYNOPSIS

3559 print.splinesurv <- function(x, ...)

SOURCE

3562 {
3563     coef <- as.matrix(x$posterior.mean$coef, ncol = 1)
3564     colnames(coef) <- "coef"
3565     print(coef, ...)
3566     invisible(x)
3567 }