Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
作为标题,我有一个类别变量,包括 A、B、C 三个级别。我只想选择两个级别,例如 A 和 B,因为我知道 C 不适合运行两个样本 t 检验。
proc ttest data=ABC plots(shownull)=interval; class var3 ###please add your code here###; var var23; title ' two samples t-test A&B'; run;
您始终可以过滤数据集以仅包含两个级别。
Where var3 ne 'C';
通常,当您有 3 个级别时,您会使用 ANOVA,然后您可以进行成对比较,但您需要对多个测试进行校正。PROC ANOVA 包含此类分析的选项。