From: Dan Abner on
Hello,

Does anyone know how I can obtain canonical discriminant scores for the call
to GLM below? I can code the matrix operations in IML (if I have to...), but
was hoping that there was a shortcut (maybe using the OUTPUT statement) in
GLM.

DM 'LOG;CLEAR;OUT;CLEAR;';
*

PROC* *GLM* DATA = W1.BAUMANN3G2V;

CLASS TREATMNT;

MODEL Y1 Y2 = TREATMNT / SS3;

CONTRAST 'TA VS. DRTA' TREATMNT *0* *1* -*1*;

CONTRAST 'TA & DRA VS. DRTA' TREATMNT *.5* -*1* *.5*;

MANOVA H = TREATMNT / CANONICAL;
*

RUN*;
*

QUIT*;


Specifically, I want sets of canonical discriminant scores for the TREATMNT
main effect as well as 1 set of scores for each contrast. As far as I know,
obtaining scores for the contrasts is not possible using either DISCRIM or
CANDISC.

Thanks!

Dan