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]
|
|
or as per Joran's comment:
Also, as a rule, avoid using things like |
|||||
|
|