Hello, I have what I think is a simple task, or, a set of simple tasks all together and I can't figure out how to do it. a) Imagine that I have one table with 2 columns: "ID", "cluster" (cluster={1,2}) with 200 rows. b) I want a new table with: "ID","cluster", "GROUP". that is composed by 3 samples of random rows, with "strata" by cluster, BUT: -I want different sizes for each cluster -I want to determine that sizes (not with percentage) -The ID's are not replaceable (they are key in the first and last table) In the end, I will get some counts like this: GROUP:1 CLUSTER:1 Number of ID's: 15 GROUP:1 CLUSTER:2 Number of ID's: 25 GROUP:2 CLUSTER:1 Number of ID's: 15 GROUP:2 CLUSTER:2 Number of ID's: 25 GROUP:3 CLUSTER:1 Number of ID's: 15 GROUP:3 CLUSTER:2 Number of ID's: 25 The closer I got was using the "proc surveyselect", but can't guarantee that ID's are not repeated and can't choose different sizes for different cluster. Can anyone out there help me, please? Thank you in advance KV
... View more