Write SAS codes to compare two datasets. Suppose the
allowable difference is 0.1.

Answers were Sorted based on User's Feedback



Write SAS codes to compare two datasets. Suppose the allowable difference is 0.1...

Answer / kumar

0.1 diff can be achieved by using criterion= option in
compare.

Is This Answer Correct ?    3 Yes 0 No

Write SAS codes to compare two datasets. Suppose the allowable difference is 0.1...

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

Post New Answer

More SAS Interview Questions

What is SAS Information Map Studio and its purpose ?

2 Answers   SAS, TCS,


what is lifetest

1 Answers   Cognizant,


Are you involved in writing the inferential analysis plan? Tables specfications?

0 Answers   Wipro,


what is proc Index? and what is proc document?

0 Answers   Mind Tree,


what is the primary variable in your study?

3 Answers   Accenture,






how to change the execute of macro

0 Answers   Mind Tree,


Explain how you can debug and test your SAS program?

0 Answers  


what is the difference between proc means and proc tabulate?

3 Answers   Cognizant, CTS,


Explain the difference between nodup and nodupkey options?

0 Answers  


what is the diff. b/w proc means and proc summary?

12 Answers   CitiGroup,


what is the function of catx syntax? : Sas-administrator

0 Answers  


how does sas handle missing values in assignment statements? : Sas programming

0 Answers  


Categories