* ReadingPaired Example -- reading-paired-sas.txt source code; * Input data; data reading; infile 'c:/datasets/reading-paired.txt' firstobs=2; input standard new; * Print data; proc print; var standard new; * Perform paired two-sample t-test; proc ttest; paired new * standard; run;