Displaying 1 result from an estimated 1 matches for "yyyyyyyyyyyyyyxxxxxxxxxx".
2009 Jun 09
3
Splicing factors without losing levels
Hi list!
An operation that I often need is splicing two vectors:
  > splice(1:3, 4:6)
  [1] 1 4 2 5 3 6
For numeric vectors I use this hack:
  splice <- function(x, y) {
    xy <- cbind(x, y)
    xy <- t(xy)
    dim(xy) <- length(x) * 2
    return(xy)
  }
So far, so good (?).  But I also need splicing for factors and I tried
this:
  splice <- function(x, y) {
    xy <-