给出一个回归模型:
Y = b0 + b1 * R + b2 * S + b3 * T
我想测试S和T是否是联合预测的。在SAS proc reg
中,这很容易做到:
proc reg;
model y = r s t;
test s, t;
run;
有谁知道在proc glm
中是否可以实现相同的测试?
答案 0 :(得分:1)
在PROC GLM中,您可以使用CONTRAST语句,如本例http://www.ats.ucla.edu/stat/sas/faq/compreg3.htm
中所述