BookmarkSubscribeRSS Feed
R_Fraser
Calcite | Level 5

I am using SAS on9.4 (TS1M0). proc surveyselect groups= option not recognized. The following SAS example does not work! At least for me. Can anyone help?

data one;

  do x=1 to 10;

  output;

  end;

run;

proc surveyselect data=one groups=3 seed=49201 out=RandomGroups noprint;

  run;

proc freq data=RandomGroups;

  tables GroupID;

run;

Thanks,

Raphael

4 REPLIES 4
PGStats
Opal | Level 21

You can do the same this way :

data one;

  do x=1 to 10;

  output;

  end;

run;

data two / view=two;

call streaminit(49201);

set one;

rnd = rand("UNIFORM");

run;

proc rank data=two out=randomGroups(drop=rnd) groups=3;

var x;

ranks groupID;

run;

proc freq data=RandomGroups;

  tables GroupID;

run;

PG

PG
Rick_SAS
SAS Super FREQ

This option was added in SAS/STAT 13.1, which was 9.4m1. See the "What's New" in SAS/STAT(R) 13.1 User's Guide

R_Fraser
Calcite | Level 5

According to the note below the option should be available in SAS® 9.4 TS1M0 or later.

36383 - Randomly assign the observations in a data set to two or more groups

Rick_SAS
SAS Super FREQ

You could have saved us some time if you had linked to that article in your original question.

It seems, then, that your question is not "How do I do this task," but rather, "Why is the web page wrong."  I doubt that anyone on this list can answer that question, other than a generic response: "human error."

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1494 views
  • 6 likes
  • 3 in conversation