Features: |
VAR statement WITH statement |
Data set: | PROCLIB.ONE, PROCLIB.TWO |
libname proclib 'SAS-library';
options nodate pageno=1 linesize=80 pagesize=40;
proc compare base=proclib.one compare=proclib.two nosummary;
var gr1 gr1; with gr1 gr2; title 'Comparison of One Variable with Two Variables'; run;