Write SAS codes to compare two datasets. Suppose the
allowable difference is 0.1.
Answer Posted / 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 |
Post New Answer View All Answers
what is slowly changing dimension? : Sas-di
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 the use of proc contents and proc print in sas? : Sas-administrator
What is the function of output statement in a SAS Program?
Mention the difference between ceil and floor functions in sas?
what are all the reports you generated in your recent project?
This entry was posted in General. Bookmark the permalink. Post a comment or leave
If you could design your ideal job, what would it look like?
What is auto call macro and how to create a auto call macro? What is the use of it? How to use it in sas with macros? : sas-macro
explain the main difference between the nodup and nodupkey options? : Sas-administrator
Name some categories in sas 9? : sas-grid-administration
Explain substr function?
Define run-group processing?
In ARRAY processing, what does the DIM function do?
What do the PUT and INPUT functions do?