📄 yyexa511.sas
字号:
/* yyexa511.sas */
data data511;
input x1-x3 type ;
cards;
0.045 0.043 0.265 2
0.066 0.039 0.264 2
0.094 0.061 0.194 2
0.003 0.003 0.102 3
0.048 0.015 0.106 3
0.210 0.066 0.263 1
0.086 0.072 0.274 2
0.196 0.072 0.211 1
0.187 0.082 0.301 1
0.053 0.060 0.209 2
0.020 0.008 0.112 3
0.035 0.015 0.170 3
0.205 0.068 0.284 1
0.088 0.058 0.215 2
0.101 0.052 0.181 .
0.045 0.005 0.122 .
;
proc print data=data511;
run;
proc discrim data=data511 pool=yes list;
class type;
var x1-x3;
priors proportional;
run ;
proc discrim data=data511 pool=test list;
class type;
priors proportional;
var x1-x3;
run ;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -