R/print.prof.R

#'@method print prof
#'@export

print.prof <- function(x, ...){
  if (!inherits(x, "prof")) stop("Use only with 'prof' objects.\n")
	cat("Subscore Reliability Estimates:\n")
	cat("\n")
	print(x$reliability)
  invisible(x)
}

Try the profileR package in your browser

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

profileR documentation built on May 2, 2019, 8:31 a.m.