What is the difference between informat and format statement?
Answer / ankit singh
Formats tells sas how to write the data to the output dataset and converts numeric to character value.
e.g. data out;
x=0;
format x date9.;
run;
Informats directs SAS to how to read the data from the source and converts charater to numeric value.;
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the primary data source for the wrs? : Sas-bi
What is proc sql pass through facility?
WHAT IS DEBUGGING? HOW TO TEST THE DEBUGGING IN SAS?
what is null hypothesis? why do you consider that?
0 Answers Accenture, Quintiles,
Do you need to rearrange the order of the data for the report?
How to get second top scorer student from a class- table having different sections A, B, C & D? each section has same number of student.
Explain input and put function?
Which are SAS Windows Clients & SAS Java Clients
what is the need of INDEX in datasets?
How will you assign all the variables of an dataset into a macro variable separated by a space? For example if a dataset has variables A,B,C. Assign them to a macro variable X as X=A B C
what is AE onset date and what is RDS?
i have a dataset with 100000 records. i want 100 records from that dataset and create a dataset.we need to pick the observations random order like 100obs,500obs,1020obs,1890obs,2565obs like that i need 100 obs in random order? how can we create this one?