Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a method for moving a column from one position in a data.frame to the next - without typing an entirely new data.frame()

For example:

a <- b <- c <- d <- e <- f <- g <- 1:100
df <- data.frame(a,b,c,d,e,f,g)

Now let's say I wanted "g" in front of "a"

I could retype it, as

df <- data.frame(g,a,b,c,d,e,f)

But is there not a quicker way? (Imagine 1500+ columns)

share|improve this question
append function can be helpful... – aL3xa Dec 2 '10 at 19:00

2 Answers

up vote 11 down vote accepted

Here is one way to do it:

> col_idx <- grep("g", names(df))
> df <- df[, c(col_idx, (1:ncol(df))[-col_idx])]
> names(df)
[1] "g" "a" "b" "c" "d" "e" "f"
share|improve this answer
Thanks RCS, this works wonderfully. – Brandon Bertelsen Jul 30 '10 at 23:25
df <- subset(df, select=c(g,a:f))
share|improve this answer
Thank you Ken, this solution is also useful. – Brandon Bertelsen Jul 30 '10 at 23:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.