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 |
What is the difference between match merge and one to one merge?
what are all the default values getting in PROC MEANS...???
Which is the best training institute for SAS in hyderabad.
112 Answers Stansys Software Solutions,
What is the difference between proportion and average?
Where do you use proc means over proc freq?
data task; input id date date9. visit; cards; 101 01jan2015 1 101 02jan2015 2 101 06jan2015 3 102 04jan2015 1 102 07jan2015 2 102 12jan2015 3 103 06jan2015 1 103 13jan2015 2 ; run; write a program to find out missing dates between visits by each subject.
Tell e how how dealt with..
what is the difference between x=substr(name,1,2); and substr(name,1,2)='x';
what techniques and/or procs do you use for tables? : Sas programming
why only we use SAS? their r many programmin language like SPSS, Oracle... Why SAS?
How many versions came upto now in SAS?
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..