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 a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming
What are the differences between sum function and using “+” operator?
What is the one statement to set the criteria of data that can be coded in any step?
WHAT DIFFERRENCE DID YOU FIND AMONG VERSION 6 8 AND 9 OF SAS.
What is the use of %include statement?
How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?
what is data access? : Sas-di
what are 5 ways to perform a table lookup in sas? : Sas-administrator
What are pdv and it functions?
In the flow of DATA step processing, what is the first action in a typical DATA Step?
explain what is factor analysis? : Sas-administrator
how can you sort the dataset having millions of OBS(instead of sort procedure?