https://github.com/cran/Hmisc
Raw File
Tip revision: 7714a7f9808af276d5e38506f46d486b28768994 authored by Frank E Harrell Jr on 22 November 2014, 00:42:24 UTC
version 3.14-6
Tip revision: 7714a7f
prnz.Rd
\name{prnz}
\alias{prn}
\title{
Print and Object with its Name
}
\description{
Prints an object with its name and with an optional descriptive
text string.  This is useful for annotating analysis output files and
for debugging.
}
\usage{
prn(x, txt, file)
}
\arguments{
\item{x}{any object}
\item{txt}{optional text string}
\item{file}{optional file name.  By default, writes to console.
	\code{append=TRUE} is assumed.}
}
\section{Side Effects}{
prints
}
\seealso{
\code{\link{print}}, \code{\link{cat}}
}
\examples{
x <- 1:5
prn(x)
# prn(fit, 'Full Model Fit')
}
\keyword{print}
back to top