Displaying 1 result from an estimated 1 matches for "70e6".
Did you mean:
70,6
2014 Dec 09
3
Optimizar paste0()?
Hola,
Otra forma, quizás algo más rápida, especialmente para unos conjuntos tan
grandes, que la de sqldf es "data.table":
library(data.table)
x <- 1:3
y <- 4:6
d <- data.table(x, y)
d[,z := paste(x,"-",y,sep="")]
> d
x y z
1: 1 4 1-4
2: 2 5 2-5
3: 3 6 3-6
Y bueno, "dplyr" también es otra opción muy rápida...
También, y recuerdo que hace