开发者

Discriminant Analysis Graph

开发者 https://www.devze.com 2023-03-28 00:42 出处:网络
I run a discriminant analysis & want to visualize the result. That means I want to check how well the discriminant functions demarcate dthe groups visually. Can anybody tell me开发者_运维技巧 how

I run a discriminant analysis & want to visualize the result. That means I want to check how well the discriminant functions demarcate dthe groups visually. Can anybody tell me开发者_运维技巧 how to do it. the discriminant code is given below:

proc discrim data=test out=ldaout;
class Classification;
var cvar1 var2 var3 var4;
run;


I assume you meant scatterplot matrix by plot(lda) in R.

If you have 9.2, you would have proc SGScatter, refer to following for more details

http://support.sas.com/resources/papers/proceedings10/057-2010.pdf

0

精彩评论

暂无评论...
验证码 换一张
取 消