作者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/m.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