LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (July 2008, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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


Back to: Top of message | Previous page | Main SAS-L page