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 |
hi here is a problem can anybody solve this? i want to report the data through third party file. by using data _null_ or proc report or macro automation process. but i want to insert the 'titles and footnotes' in between the data and also starting of 2nd and ending of 2nd and starting of 3rd and ending of the 3rd page. tell me how and write the code?
At compile time when a SAS data set is read, what items are created?
how does sas handle missing values in an update? : Sas programming
what is the use of proc sql?
what are different type of sas servers ? On which server does the sas code execute ?
How do you generate random samples?
How to limit decimal places for the variable using proc means?
what are the considerations when picking a SAS/STAT procedure?
0 Answers Accenture, Quintiles,
what are methods to identify duplicate observations?
What is the basic syntax of a sas program?
what is TAB delimiter? explain about it? what will you do to get TAB delimiter?
I have a dataset concat having a variable a b & c. How to rename a b to e & f?