paste.vec.RdA simple utility for displaying simple S vectors; can be used as debugging utility.
paste.vec(name, digits = options()$digits)string with an variable name which must exist in the current environment (R session).
how many decimal digits to be used; passed to
format.
a string of the form "NAME = x1 x2 ..."
x <- 1:4
paste.vec(x) ##-> "x = 1 2 3 4"
#> [1] "x = 1 2 3 4"