R/print.desc.R

Defines functions print.desc

Documented in print.desc

# TODO: Add comment
# 
# Author: jfcollin
###############################################################################


#' Print method for desc object
#' 
#' @param x A desc object
#' @param ... Other parameters
#' 
#' @seealso \code{\link{desc}} 
#' 
#' @method print desc 
#' @export

print.desc=function(x,...)
{
	cat("",sep="\n")
	cat("############################################",sep="\n")
	cat(x$title,sep="\n")
	cat("############################################",sep="\n")
	cat("",sep="\n")
	print(x$output)
	cat("",sep="\n")
	cat("############################################",sep="\n")
	cat("",sep="\n")
}

Try the ClinReport package in your browser

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

ClinReport documentation built on Sept. 3, 2019, 5:07 p.m.