prnz.Rd
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])
prints
x <- 1:5
prn(x)
#>
#> x
#>
#> [1] 1 2 3 4 5
# prn(fit, 'Full Model Fit')