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 to get top scorer student from a class-table having different sections A,B, C & D? Each section having same number of students.
Which is the best training Institute for SAS Business Intelligence course?
Mention what is SAS data set?
in ods is there any lib's
What happens in the following code, if u type 8 instead of *? proc sql noprint; create table abc as select 8 from lib.abc; quit;
What is a macro routine?
what are the advantages of using SAS in clinical data mangement? why should not we use other software products in managing clinical data?
What do you feel about hardcoding?
what are _numeric_ and _character_ and what do they do? : Sas programming
How the date 04oct1994 is stored in SAS,not only give the answer explain in brief?
how to display duplicated observations in a data using base sas.
13 Answers HCL, TCS,
Which date function advances a date, time or datetime value by a given interval?