最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

sas - How do I change effectplot in proc plm? - Stack Overflow

programmeradmin6浏览0评论

My variable haft_basvar_hand_handled have the values "Ja" and "Nej".

In the effectplot, I get the probability of "Nej" , I want the probability for "Ja" , the same as event. How do I change this?

I have the following code in SAS:

proc gee data=longdata plot=all DESCENDING;
class kod enkat(ref="Bas") haft_basvar_hand_handled;
model haft_basvar_hand_handled(event='Ja')=enkat jamar_hoger enkat*jamar_hoger/dist=binary;
repeated subject=kod;
store out=jamarhand;
run;
title;
quit;
proc plm restore=jamarhand;
effectplot slicefit (x=jamar_hoger sliceby=enkat) / clm;
run;
发布评论

评论列表(0)

  1. 暂无评论