| Date: | Tue, 15 Jul 2008 10:16:11 -0400 |
| Reply-To: | SUBSCRIBE SAS-L Ngonidzaishe <nnyambuya@YAHOO.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | SUBSCRIBE SAS-L Ngonidzaishe <nnyambuya@YAHOO.COM> |
| Subject: | Duplicates with proc surveyselect |
|---|
I used the following code to try and select 6 samples of 1000 each from a
dataset with 7500 records.
The problem I am having is the six samples are not mutually exclusive.
Some of the records are apearing in more than one group.
How do I make sure that each record is only allocated to one group?
The code I am using
proc surveyselect data = In_bundle method = SRS rep = 6 sampsize = 1000
seed = 15 out=sample_bundle;
id _all_;
run;
Thanks in anticipation
|