3

Random assignment of subjects to groups in SAS

 1 year ago
source link: https://blogs.sas.com/content/iml/2022/06/01/random-assignment-groups-sas.html
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Random assignment of subjects to groups in SAS

2

A common question on SAS discussion forums is how to randomly assign observations to groups. An application of this problem is assigning patients to cohorts in a clinical trial. For example, you might have 137 patients that you want to randomly assign to three groups: a control group, a group that gets an established treatment, and a group that gets a new treatment. Random assignment tends to produce groups in which patients who have confounding factors (obesity, high blood pressure, and other pre-existing conditions) are distributed equally across the groups.

There are many ways to perform a random assignment in SAS, including the DATA step and PROC PLAN. However, my favorite procedure for random assignment is to use the GROUPS= option in PROC SURVEYSELECT. This article shows three ways to assign subjects to groups:

  • Assign the subjects as evenly as possible to G groups.
  • Assign the subjects within each stratum as evenly as possible to G groups.
  • Assign the subjects to groups by using a specified list of sample sizes.

Distribute subjects equally among groups

In the simplest situation, you want to randomly assign N subjects to G groups so that the group sizes are as equal as possible. If G divides N, you can make the groups equal in size. Otherwise, one or more groups will have one more subject than the others.

Suppose that you have N=137 patients to assign to G=3 groups. Because 137 is a prime number, the groups cannot be equal. The following DATA step extracts 137 patients from the Sashelp.Heart data set. The call to PROC SURVEYSELECT uses the GROUP=3 option to randomly assign the patients to three groups. The output data set contains a new indicator variable that is named GroupID and has the values 1, 2, or 3. The call to PROC FREQ shows that the subjects are (nearly) equally divided among the three groups:

/* Extract 137 patients from the Sashelp.Heart dat set */
data Have;
ID + 1;
set Sashelp.Heart(obs=137);
keep ID Sex Height Weight Diastolic Systolic Cholesterol;
run;
 
/* SAS/STAT 13.1 : use GROUPS= option */
/* See https://support.sas.com/kb/36/383.html */ 
proc surveyselect data=Have noprint seed=12345 
                  out=Cohorts groups=3;
run;
 
proc freq data=Cohorts;
   table GroupID / nocum;    /* count how many subjects in each group */
run;

RandGroups1.png

The output shows that each group contains approximately 33% of the subjects. Forty-five subjects are assigned to the first group and 46 subjects are assigned to the second and third groups. When the number of groups does not evenly divide the number of subjects, the first groups have fewer subjects than the last groups.

As stated earlier, a benefit of random assignment is that covariate values have nearly identical distributions in each group. For example, the following statements create a box plot of the Cholesterol variable. The distribution of Cholesterol values seems to be similar in the three groups.

proc sgplot data=Cohorts;
   hbox Cholesterol / category=GroupID;
run;

RandGroups2.png

Distribute subjects within strata equally among groups

Sometimes the subjects have additional categorical characteristics such as Sex or Race. You might want to randomly assign subjects within each category. For example, these data contain 86 females and 51 males. The following call to PROC SURVEYSELECT uses the STRATA statement to separately assign the females to three groups (sizes are 28, 29, and 29) and the males to three groups (sizes are 17). To use the STRATA statement, you need to sort the data by the Sex variable, as follows:

/* random assignment within strata */
proc sort data=Have;
   by Sex;
run;
 
proc surveyselect data=Have noprint seed=12345 
                  out=Cohorts groups=3;
   strata Sex;
run;
 
proc freq data=Cohorts;
   table Sex*GroupID / nocum nocol nopercent;
run;
RandGroups3.png

The output from PROC FREQ shows that the random assignment is as even as possible within the males and within the females, separately, with about 33% of each gender in each group.

Assign subjects unequally to groups

In some situations, you might not want an equal number of subjects in each group. For example, you might want to assign fewer subjects to the control group and more to the experimental groups. The GROUP= option supports a list of sample sizes. The following call to PROC SURVEYSELECT randomly assigns 40 subjects to each of the first two groups and 57 subjects to the third group:

/* You can also specify the groups sizes */ 
proc surveyselect data=Have noprint seed=12345 
                  out=CohortSize groups=(40 40 57);
run;
proc freq data=CohortSize;
   table GroupID / nocum;
run;

RandGroups4.png

The output from PROC FREQ verifies that the sample sizes for the three groups are as specified on the GROUP= list.

Summary

This article shows that it is easy to use PROC SURVEYSELECT to carry out a random assignment of subjects to groups. This article shows three examples:

  • Random assignment (evenly) to G groups.
  • Random assignment within each stratum (evenly) to G groups.
  • Random assignment to G groups when you want to specify the size of each group.

Further reading


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK