Procedure features: |
PROC COMPARE statement option
|
VAR statement |
WITH statement |
|
Data sets: |
|
This example compares
a variable from the base data set with
a variable in the comparison data set. All summary reports are suppressed.
libname proclib 'SAS-data-library';
options nodate pageno=1 linesize=80 pagesize=40;
| proc compare base=proclib.one compare=proclib.two nosummary; |
| var gr1;
with gr2;
title 'Comparison of Variables in Different Data Sets';
run; |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.