Question

I have three vectors in an xts R object. Call them V1, V2, V3. After merging, the order of them left to right is V2, V3, V1. How do I re-arrange them so they read (from left to right) as V1, V2, V3?

Was it helpful?

Solution

You can just reference the columns and re-assign them:

 x <- x[,c(2,3,1)]

Here's a working example:

> data(sample_matrix)
> x <- head(as.xts(sample_matrix, descr='my new xts object'))[,c(1,2,3)]
> x
               Open     High      Low
2007-01-02 50.03978 50.11778 49.95041
2007-01-03 50.23050 50.42188 50.23050
2007-01-04 50.42096 50.42096 50.26414
2007-01-05 50.37347 50.37347 50.22103
2007-01-06 50.24433 50.24433 50.11121
2007-01-07 50.13211 50.21561 49.99185
> x <- x[,c(2,3,1)]
> x
               High      Low     Open
2007-01-02 50.11778 49.95041 50.03978
2007-01-03 50.42188 50.23050 50.23050
2007-01-04 50.42096 50.26414 50.42096
2007-01-05 50.37347 50.22103 50.37347
2007-01-06 50.24433 50.11121 50.24433
2007-01-07 50.21561 49.99185 50.13211

OTHER TIPS

It's worth noting that while you are able to reference the columns by name to generate new objects and columns, ala

xts.object$V1plusV2 <- xts.object[, "V1"] + xts.object[, V2"] ,

you cannot reorder the columns via name. The following is not allowed

xts.reordered <- xts.object[, c("V3, V2, V1")] .

Instead, as Shane pointed out, you would need to reference the columns by number.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top