BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
nicnad
Fluorite | Level 6

Hi,

I would like to know the most efficient SAS procedure to select at least one item per category randomly, with a minimum of 50% of the whole population.

To illustrate my problem. Lets say I have the following table :

CategoryInfo1
Floweraaa
Flowerbbb
Flowerccc
Fruitddd
Carddd
Careee
Carfff
Cariii
Toyfff
Toyggg

The result would be like the following table (with random values and at least 1 item per category) :

CategoryInfo1
Floweraaa
Fruitddd
Carfff
Toyggg
Flowerccc

Thank you for your help and time.

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

Surveyselect with samprate and strata will do exactly what you want:

data have;

input category $ info $;

datalines;

Flower aaa

Flower bbb

Flower ccc

Fruit ddd

Car ddd

Car eee

Car fff

Car iii

Toy fff

Toy ggg

;

proc surveyselect data=have out=want samprate=0.5 seed=114876001;

strata category notsorted;

run;

proc print data=want noobs; run;

PG

PG

View solution in original post

12 REPLIES 12
PGStats
Opal | Level 21

Surveyselect with samprate and strata will do exactly what you want:

data have;

input category $ info $;

datalines;

Flower aaa

Flower bbb

Flower ccc

Fruit ddd

Car ddd

Car eee

Car fff

Car iii

Toy fff

Toy ggg

;

proc surveyselect data=have out=want samprate=0.5 seed=114876001;

strata category notsorted;

run;

proc print data=want noobs; run;

PG

PG
nicnad
Fluorite | Level 6

Thank you very much to all of you for your help.

For the proc surveyselect method, when I do not sort my table by the specific variable and use 'notsorted' it doesn't return the appropriate result.

Therefore, when I use a proc sort on my variable, the I use proc surveyselect with mentioning 'notsorted', it works.

As for the modified proc sql method. When I use it in my data, it select one additional record that should not be there...

I would like to know if my manipulation with the proc surveyselect are Ok and what would be the correct method to do it with a proc SQL.

Thanks

PGStats
Opal | Level 21

NOTSORTED means that the data from each category occurs together consecutively but not necessarily in sorted order (e.g. aaaa cccc dd bbb).

Post your code.

PG

PG
nicnad
Fluorite | Level 6

Thank you for the quick reply.

I won't post my actual data because it is sensitive, but this example triggers the same problem. If I understand properly, the number of strata should be 4, but it returns "Number of strata = 7".

data have;

input preinfo $ category $ info $;

datalines;

asdfasdfa Flower aaa

asfdasdfasdf Flower bbb

awdfadfasf Flower ccc

fasdfsdafds Fruit ddd

asdsdafsdf Car ddd

asdfasdfs Car eee

asdfasfsdff Car fff

asdfasdfds Car iii

asdfasdf Toy fff

asdfsdaerqwerwefad Toy ggg

asdfasdfa Flower aaa

asfdasdfasdf Flower bbb

awdfadfasf Flower ccc

fasdfsdafds Fruit ddd

asdsdafsdf Car ddd

asdfasdfs Car eee

asdfasfsdff Car fff

asdfasdfds Car iii

;

proc surveyselect data=have out=want samprate=0.1 seed=114876001;

strata category notsorted;

run;

PGStats
Opal | Level 21

Yes, since your category data is not consecutive, you need to sort BY category before calling surveyselect.

proc sort data=have; by category; run;

proc surveyselect data=have out=want samprate=0.1 seed=114876001;

strata category;

run;

PG

PG
nicnad
Fluorite | Level 6

Excellent.

Thank you all for your help!

stat_sas
Ammonite | Level 13

proc sql;

select * , rand('UNIFORM') as r

from have

group by category

having r=min(r) or (count(category)>=1 and count(category)<=2);

quit;

PGStats
Opal | Level 21

your solution will not work for a general population with larger categories. It will choose a single observation per category, which may be far less than 50%. A simple change to your SQL approach can however yield good samples (without the perfect assurance of a >50% sample size):

data have;

input category $ info $;

datalines;

Flower aaa

Flower bbb

Flower ccc

Fruit ddd

Fruit eee

Fruit fff

Fruit ggg

Fruit hhh

Fruit iii

Fruit jjj

;

/* Modified code */

proc sql;

select * , rand('UNIFORM') as r

from have

group by category

having r=min(r) or r<0.5;

quit;

PG

PG
stat_sas
Ammonite | Level 13

Hi PG,

Yes, that is right. Thanks for the suggestion.

Regards,

Naeem

PGStats
Opal | Level 21

Along the same lines, if you want to guarantee a >50% sample, you can use proc rank to create fractional ranks (hint: fractional rank=1 when there is a single case in a category) :

data temp;

call streaminit(987256);

set have;

r = RAND("UNIFORM");

run;

proc rank data=temp out=want(where=(r>0.5)) fraction;

by category notsorted;

var r;

run;

proc print data=want(drop=r) noobs; run;

PG

PG
RamKumar
Fluorite | Level 6

RAND function suppose to generate a random number from a distribution where as it producing all the records from the table (have) when I ran your code. Please advise. I assumed 'have' dataset as below.

data have;

input category $ info $;

datalines;

Flower aaa

Flower bbb

Flower ccc

Fruit ddd

Fruit eee

Fruit fff

Fruit ggg

Fruit hhh

Fruit iii

Fruit jjj

;


Also 'r' value differs when I ran it one variable 'category'.

PGStats
Opal | Level 21

I don't understand your question. When I run this (exactly this):

data have;

input category $ info $;

datalines;

Flower aaa

Flower bbb

Flower ccc

Fruit ddd

Fruit eee

Fruit fff

Fruit ggg

Fruit hhh

Fruit iii

Fruit jjj

;

data temp;

call streaminit(987256);

set have;

r = RAND("UNIFORM");

run;

proc rank data=temp out=want(where=(r>0.5)) fraction;

by category notsorted;

var r;

run;

proc print data=want(drop=r) noobs; run;

I get this output:

                                   The SAS System                                  1

                                                  11:15 Thursday, September 25, 2014

                                  category    info

                                   Flower     bbb

                                   Flower     ccc

                                   Fruit      eee

                                   Fruit      hhh

                                   Fruit      iii

                                   Fruit      jjj

The proc rank step replaces the random numbers (r in dataset temp) by their fractional ranks (r in dataset want) and keeps only the fractional ranks greater than 0.5. This way, a random selection of half the observations is kept in each category.

PG

PG

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 12 replies
  • 1788 views
  • 1 like
  • 4 in conversation