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.

What code in R will do the following:

Given a list 1, 2, ..., M create a list of N random entries from that list. Furthermore, obtain the complement list.

example:
N = 5
M = 10
list = [1,4,3,9,2]
complement = [5,6,7,8,10]
share|improve this question
1  
It's actually "complement", if you care. – mdsumner Feb 2 '12 at 9:28

1 Answer

up vote 6 down vote accepted

?sample

samp_range <- 1:M
out <- sample(samp_range, N)
compliment <- samp_range[!samp_range %in% out]

or as per Joran's comment:

compliment <- setdiff(samp_range, out)

Also, as a rule, avoid using things like list as variable names since they are internal R functions.

share|improve this answer
Nice. I'll add a note about setdiff in a comment here and delete mine. – joran Feb 1 '12 at 23:28
or just out <- sample(M,N); compliment <- samp_range[-out] – Ian Fellows Feb 2 '12 at 0:24

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.