作者BartJ (蝙蝠侠霸子)
看板Statistics
标题[程式] SAS两个类别变数合并成一个新类别
时间Sat May 18 12:39:20 2019
想请问一下用这个程式码产生新类别变数(将两个类别合并形成一个新类别),然後跑LSD
TUKEY Duncan 怎麽一直跑不出来?
data newdata;
set outbreak;
newwt=.;
If weather=1 and time=1 then newwt=1;
Else if weather=1 and time=2 then newwt=2;
Else if weather=2 and time=1 then newwt=3;
Else if weather=2 and time=2 then newwt=4;
Run;
Proc glm data=newdata;
Class newwt;
Model motor_illegal= newwt;
Means newwt/ lines TUKEY T Duncan alpha=0.05
Run;
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 223.136.86.189
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/Statistics/M.1558154362.A.EF9.html
※ 编辑: BartJ (36.231.155.32), 05/18/2019 13:34:18
1F:→ holmespei: 拿掉Model=motor_illegal之间的等号05/18 14:13
2F:推 jasonfun44: class 中间应该也不会有=05/18 14:30
3F:→ BartJ: 好像还是跑不出来 日志档里面写Syntax error....05/18 14:51
※ 编辑: BartJ (114.32.176.48), 05/18/2019 15:07:26
4F:推 jasonfun44: alpha=0.05後面少一个; 05/18 16:12