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

Hi, 

I am trying to simulate a dataset for 100 subjects over the course of 10 days such that the variable y with normal distribution is repeating the same value within each subject per each day.

 

I have the following:

 

data A;

call streaminit(1);

do subject =1 to 100;

 do t = 1 to 10;

y=rand('normal',1,2);

output;

label t='Day';

end;

end;

 run;

 

which produces:

 

subject  day  y

1             1    1.03

1             2    3.02

....

2             1    1.45

2             2    0.39

...

etc.

 

I want this structure: 

 

subject  day  y

1             1    1.03

1             2    1.03

....

2             1    1.45

2             2    1.45

...

etc.

 

Any help is appreciated. 

 

Thank you! 

1 ACCEPTED SOLUTION

Accepted Solutions
mkeintz
PROC Star

So you want a normal distribution accross subjects, but no variation at all within subject, right?  

 

If so, then modify your program by taking the RAND function outside of the inner loop, and put it in the outer loop:

 

data A;
  call streaminit(1);
  do subject =1 to 100;
    y=rand('normal',1,2);
    do t = 1 to 10;
      output;
    end;
  end;
  label t='Day';
run;

 

--------------------------
The hash OUTPUT method will overwrite a SAS data set, but not append. That can be costly. Consider voting for Add a HASH object method which would append a hash object to an existing SAS data set

Would enabling PROC SORT to simultaneously output multiple datasets be useful? Then vote for
Allow PROC SORT to output multiple datasets

--------------------------

View solution in original post

2 REPLIES 2
mkeintz
PROC Star

So you want a normal distribution accross subjects, but no variation at all within subject, right?  

 

If so, then modify your program by taking the RAND function outside of the inner loop, and put it in the outer loop:

 

data A;
  call streaminit(1);
  do subject =1 to 100;
    y=rand('normal',1,2);
    do t = 1 to 10;
      output;
    end;
  end;
  label t='Day';
run;

 

--------------------------
The hash OUTPUT method will overwrite a SAS data set, but not append. That can be costly. Consider voting for Add a HASH object method which would append a hash object to an existing SAS data set

Would enabling PROC SORT to simultaneously output multiple datasets be useful? Then vote for
Allow PROC SORT to output multiple datasets

--------------------------
SR79
Fluorite | Level 6
Perfect thanks!!

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 2 replies
  • 489 views
  • 2 likes
  • 2 in conversation