How could you generate test data with no input data?
Answers were Sorted based on User's Feedback
Answer / bitla
using random functions like RANUNI() RANBIN() etc
with DO loops
ex:
data one;
do i=1 to 1000;
x=ranuni(32223);
end;
run;
Is This Answer Correct ? | 11 Yes | 1 No |
Answer / k ramesh
data testdata_anlyse;
do i=1 to 100;
x=rannor(i);
output;
end;
run;
Is This Answer Correct ? | 3 Yes | 1 No |
how can u create zero observation dataset?
what is prime numbers? how we can get plc write sas code?
What is the purpose of _character_ and _numeric_?
What is the difference between reading data from an external file and reading data from an existing data set?
what is the difference between proc means and proc summary?
What is your favorite all time computer book? Why?
Difference between nodup and nodupkey options?
hi i date is 05sep2005; i want the oupput like 05sep2005:00:00:00 ; how it wil come?
What is the use of the %include statement?
What is your weekness? I am confuse what to say about this question. so can u give some answer which can be yur strenght.
how many display types available in sas bi dashboard? : Sas-bi
hi guys ...i have one query... data abc; input s w k g o t a m; cards; 1 2 3 4 5 6 7 8 2 3 4 5 6 7 8 9 ; run; i want the output to be the sorted order(only variables).observations should not be changed..