Using the command paste
in R, I wanted to use both arguments sep
and collapse
, but you cannot abbreviate collapse
to coll
or even collaps
. Yet for other functions partial abbreviation works.
For example:
paste(letters, colla=", ")
# [1] "a , " "b , " "c , " "d , " "e , " "f , " "g , " "h , " "i , " "j , " "k , " "l , " "m , " "n , " "o , " "p , " "q , " "r , "
[19] "s , " "t , " "u , " "v , " "w , " "x , " "y , " "z , "
paste(letters, collapse=", ")
# [1] "a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z"
There are no other arguments to collapse that start with coll
, which would interfere with the partial argument matching.
Why must I type out the entire argument name when calling paste
, when I do not have to for other functions?
A wrapper function might be helpful, much like
paste0
eg :