Displaying 1 result from an estimated 1 matches for "footstat".
Did you mean:
  foostat
  
2007 Apr 17
1
PROC DISCRIM vs. lda( ) in MASS
...NORMAL LIST POOL = YES PCOV MANOVA;
     CLASS STRATA;
     PRIORS EQUAL;
     VAR X1 X2 X3;
   RUN;
I am able to easily obtain the linear discriminant functions for
the strata which allow computation of the three discriminant
scores for a given observation.  This information is contained 
in WORK.FOOTSTAT and may be extracted by subsetting:
   DATA LDFUNC;
     SET FOOSTAT(WHERE = (_TYPE_ = LINEAR));
   RUN;
To actually implement the linear discriminant functions takes
a bit more formatting, but there it is.
My question:  Where is this information stored in R?  I completely
understand that predic...