R/print.profg.R

Defines functions print.profg

#'@method print profg
#'@export

print.profg <- function(x, ...){
  if (!inherits(x, "profg")) stop("Use only with 'profg' objects.\n")
	cat("\nData Summary:\n")
	print(x$data.summary)
  invisible(x) 
}
cddesja/profileR documentation built on Feb. 23, 2023, 2:44 p.m.