小弟在做glm,在其他地方找到了段代码自己改了改就运行了,删了一些代码之后结果倒是能出来了,但却显示浮点溢出,没能出来最后的分析结果,但哑变量设置是跑出来了。问题到底出在哪里呢?请各位解答一下。代码与结果如下
proc genmod data=a1.data;
class xz riskcode times carkind damagekind losstype losstypede / param=ref;
model claim = xz riskcode times carkind damagekind losstype losstypede / dist=ig link=log type3;
where claim>0;
run;