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
Compare sas with other data analytics tools.
Mention sas system options to debug sas macros.
Which function is used to count the number of intervals between two sas dates?
What versions of SAS have you used (on which platforms)?
What is the maximum length of the macro variable? : sas-macro
What are the parameters of scan function?
How will you react when, while consulting a SAS documentation manual to get an answer to a problem, someone says hey, I thought you were supposed to know all that stuff already, and not have to look it up in a book?
Explain substr function?
Which command is used to perform sorting in sas program?
What does the trace option do?
What do you know about sas and what we do? : sas-grid-administration
Differentiate between format and informat? : sas-grid-administration
what is hash files in sas and why we are using this one in sas?
What are the five ways to do a table lookup in sas? : sas-grid-administration
What is SAS informats?