Skip to content
Prev 156750 / 398506 Next

paste with list

try this:

t1 <- c(1, 2, 3)
t2 <- c(3.4, 5.5, 1.1)
tl <- list(t1, t2)

do.call("paste", c(tl, sep = "\t"))


I hope it helps.

Best,
Dimitris
Antje wrote: