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 |
How experienced are you with customized reporting and use of Data _Null_ features?
Compare sas with other data analytics tools.
What is the difference between using drop = data set option in data statement and set statement?
What is Linear Regression?
What are the ways to do a “table lookup” in sas?
What is the difference between proportion and average?
Code a PROC SORT on a data set containing State, District and County as the primary variables, along with several numeric variables?
Approximately what date is represented by SAS date value of 730
Explain the difference between using drop = data set option in set and data statement?
What is SAS? is it a software just for use or we can creat something over there?
code the tables statement for a single level frequency?
: and & modifiers.