How could you generate test data with no input data?
Answer Posted / 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 |
Post New Answer View All Answers
if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming
How do you delete duplicate observations in sas?
What are the different versions of sas that you have used until now? : sas-grid-administration
why is sas data integration studio important? : Sas-di
Differentiate between format and informat? : sas-grid-administration
Explain the main difference between the sas procedures and functions? : Sas-administrator
What is the basic structure of a sas program?
What is the purpose of _character_ and _numeric_?
What are all the problems you faced while validating tables and reports?
what is data governance? : Sas-di
what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming
What is SAS? What are the functions does it performs?
What sas features do you use to check errors and data validation?
describe about metadata object? : Sas-di
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming