BookmarkSubscribeRSS Feed
deleted_user
Not applicable
I want to create a sample from the sasuser.revenue dataset and insert it as a new dataset called work.revenue. This is the code I am submitting:

data work.revenue (drop = i samplesize);
samplesize = 10;
do i = 1 to samplesize;
pickit = ceil(ranuni(0) * totobs);
set sasuser.revenue point = pickit nobs = totobs; output;
end;
stop;
run;

It is working perfectly fine.

However, how can I have the variable called pickit to be part of my final dataset? Although this is a random sampling, I want to know which observations were picked during the process.

Thanks for the help
3 REPLIES 3
LinusH
Tourmaline | Level 20
This is what the documentation says about the point option:

"The POINT= variable is available anywhere in the DATA step, but it is not added to any new SAS data set"

But nothing is stopping you from assigning another variable the same value, which will then end up in your output table:

data work.revenue (drop = i samplesize);
samplesize = 10;
do i = 1 to samplesize;
pickit = ceil(ranuni(0) * totobs);
pick = pickit;
set sashelp.class point = pickit nobs = totobs;
output;
end;
stop;
run;

Regards,
Linus
Data never sleeps
Patrick
Opal | Level 21
Hi NickSAS
Find below the code how SAS provides it to create a random sample without replacement.
If you analyse the small differences to your code then you see why your code doesn't really create a true random sample.
Cheers, Patrick

data work.rsubset(drop=obsleft sampsize);
sampsize=10;
obsleft=totobs;
do while(sampsize>0);
pickit+1;
if ranuni(0) set sasuser.revenue point=pickit
nobs=totobs;
output;
sampsize=sampsize-1;
end;
obsleft=obsleft-1;
end;
stop;
run;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

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
  • 3 replies
  • 1045 views
  • 0 likes
  • 3 in conversation