Is there any way to create duplicates of an observation in a dataset? I have dataset with EmpID and Entries column. Based on Entries column I would like to
create duplicate observation.
Example: If EmpID – 1000 has Entries = 5 then I would like the output as:
| EmpID | Entries |
|---|---|
| 10000 | 5 |
| 10000 | 5 |
| 10000 | 5 |
| 10000 | 5 |
| 10000 | 5 |
Thanks
Simple :
data myDataSet;
set myDataSet;
do _n_ = 1 to Entries;
output;
end;
run;
PG
Simple :
data myDataSet;
set myDataSet;
do _n_ = 1 to Entries;
output;
end;
run;
PG
Thanks for the quick reply.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.
Ready to level-up your skills? Choose your own adventure.