R/print.pball.R

Defines functions print.pball

print.pball <- function(x,...)
  {
    cat("Call:\n")
    print(x$call)
    
    cat("\nRobust correlation matrix:\n")
    if (!is.null(x$pbcorm)) print(round(x$pbcorm, 4)) else print(round(x$cor, 4))
    cat("\np-values:\n")
    print(round(x$p.values, 5))
    
    if (!is.null(x$H)) cat("\n\nTest statistic H: ", round(x$H, 4), ", p-value = ", round(x$H.p.value, 5), "\n\n", sep = "") 
  }

Try the WRS2 package in your browser

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

WRS2 documentation built on Nov. 2, 2023, 6:25 p.m.