R/print.cormat.R

print.cormat <- function (x, digits=max(3L, getOption("digits") - 3L), ...) {
  cat("Specified mean pairwise correlation: ")
  cat(format(x$rho, digits=digits))
  
  cat("\nSpecified standard deviation: ")
  cat(format(x$sigma, digits=digits))
  
  cat("\nSpecified mean: ")
  cat(format(x$mu, digits=digits))
  
  cat("\nCommunity matrix: \n")
  print(x$community, digits=digits)
}

Try the synchrony package in your browser

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

synchrony documentation built on May 2, 2019, 6:12 p.m.