Appends vectors together
Examples
if(getRversion() >= "3.5.0") {
sf_concat(letters, 1:5)
}
#> [1] "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" "k" "l" "m" "n" "o" "p" "q" "r" "s"
#> [20] "t" "u" "v" "w" "x" "y" "z" "1" "2" "3" "4" "5"
Appends vectors together
if(getRversion() >= "3.5.0") {
sf_concat(letters, 1:5)
}
#> [1] "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" "k" "l" "m" "n" "o" "p" "q" "r" "s"
#> [20] "t" "u" "v" "w" "x" "y" "z" "1" "2" "3" "4" "5"