Write SAS codes to compare two datasets. Suppose the
allowable difference is 0.1.
Answers were Sorted based on User's Feedback
Answer / kumar
0.1 diff can be achieved by using criterion= option in
compare.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / reshma
Proc compare to compare to datasets with respect to all
variables.
proc sort data= data1 ;
by var1;
run;
proc sort data= data2 ;
by var1;
run;
Proc comapre base=data1 compare=data2;
run;
don't know abt 0.1 diff
| Is This Answer Correct ? | 5 Yes | 4 No |
Which is Best Institute for learning SAS BASE & SAS BI in Hyderabad? Can anyone suggest me ?
what is the use of catalog?
1.we can execute a macro with in a macro,by using call symput and symget can any one give me one example? 2.We can create the macro variables by using %let,%do,macro parameters,INTO clause in proc sql and call symput, can any one give me example to create macro variable with INTO clause and call symput? 3.
what is information maps?
How substr function works in sas?
what is star schema? : Sas-di
What is the order of evaluation of the comparison operators: + - * /** ()?
How are the analysis data sets structured?
What does the RUN statement do?
explain the proc in sas? : Sas-administrator
Tell e how how dealt with..
What do you feel about hardcoding?