As the title, I have a category variable including A,B,C three levels. I want to just select two levels such as A and B, as I know C is none of the business to run two sample t-test.
proc ttest data=ABC plots(shownull)=interval;
class var3 ###please add your code here###;
var var23;
title ' two samples t-test A&B';
run;