* SAS code to find t(3) P-value; options linesize=70; data pval; cdf = probt(2.6412, 3); pval = 1 - cdf; cards; proc print; run;