Print and Object with its Name
Prints an object with its name and with an optional descriptive text string. This is useful for annotating analysis output files and for debugging.
prn(x, txt, file, head=deparse(substitute(x), width.cutoff=500)[1])
x
: any objecttxt
: optional text stringfile
: optional file name. By default, writes to console. append=TRUE
is assumed.head
: optional heading. Default is derived from the user's expression for x
prints
print
, cat
, printL
x <- 1:5 prn(x) # prn(fit, 'Full Model Fit')