R/print.path.R

Defines functions print.path

Documented in print.path

print.path = function(x, ...)
{
    cat("breaks:\n")
    print(round(x$breaks, 4))
    cat("\nIndicator matrix (parameters x breaks):\n")
    print(x$tau)
    cat("\nBeta matrix (parameters x breaks):\n")
    print(round(x$beta, 4))
    cat("\nScore matrix (parameters x breaks):\n")
    print(round(x$score, 4))
}

Try the ExactPath package in your browser

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

ExactPath documentation built on May 30, 2017, 5:15 a.m.