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.

How can I split a vector into two such that it selects a random sample for each new vector. But I always want to split in half. For instance

x <- 1:10
obj <- splitMyVector(x)

obj$a
 > 5 3 9 7 10
obj$b
 > 8 4 1 6 2

Note: the purpose for this is to do a split half reliability.

share|improve this question

1 Answer

up vote 4 down vote accepted
split(sample(x),letters[seq(length(x))%%2+1])
$a
[1]  9  7 10  4  2

$b
[1] 6 1 8 3 5
share|improve this answer
1  
Nice. You should point out that the letters[...] calculation isn't strictly necessary if the user is always going to use a and b for his factors. (Unless I'm not paying attention to the details here :-( ) – Carl Witthoft Jul 19 '12 at 15:18
Out of curiosity, may I ask what does the double '%%' operator do? I tried to Google for it but couldn't find any relevant results. – 001193871937819863213487938912 Jul 20 '12 at 12:54
@130490868091234 It gives the remainder of integer division – James Jul 20 '12 at 13:39

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.