I was working with the paste command in R, when I found that
a <- c("something", "to", "paste")
paste(a, sep="_")
produces the output
# [1] "something" "to" "paste"
Which is same as when I print
"a"
# [1] "something" "to" "paste"
So what effect does the sep
have on the paste
command in R?