Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have data.frame named test with 500 columns. I need to create the data.frame test1 with 7 columns, from test (their number is 1,2, 52, 121, 123, 344, 401 etc.) How can I do that easily? (I mean shortly )

share|improve this question

1 Answer

A short example. Take columns 1,3 of a small data frame:

d <- data.frame(a=c(1,2,3), b=c(4,5,6), c=c(7,8,9),d=c(2,3,4))
d[,c(1,3)]

  a c
1 1 7
2 2 8
3 3 9
share|improve this answer
That's what I need thanks! – David Kakauridze Apr 15 '12 at 13:46

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.