A simple but useful debugging function. It first announces the object to
printed and then prints it.
Usage
deb(x, method = c("print", "cat"))
Arguments
x
The object to be printed
method
The method for printing x. Default is "print",
which uses print for printing; "cat" uses
cat for printing. The latter is useful for short objects
(scalar and vectors), the former for more structured objects (data frames,
matrices, lists etc).