SAS で genmod プロシージャを使用しようとしていますが、"plots=" オプションに複数のプロット名を追加すると、segfault エラーが発生し続けます。
私のコードは次のとおりです。
Ods graphics on;
Proc genmod data=library1.data1 plots=(Reschi(xbeta) leverageplot);
Class base_studyid nsaid (param=ref ref=first) pbqstatin (param=ref ref=first) hrtever (param=ref ref=first) timecls;
Model crp=time age e1baseline nsaid cholratio bfpbase hrtever time*e1baseline/wald type3;
Repeated subject=base_studyid/type=exch corrw covb withinsubject=timecls;
Run;
「plots=」オプションに「leverageplot」を追加するまで、このコードはエラーなしで実行されました。「leverageplot」の代わりに他のいくつかのオプションを試しましたが、同じ結果になりました。これにより、「plots =」オプションに2番目のプロットがあり、問題が発生していると思われます。セグメンテーション違反なしでGENMODで複数のプロットを取得する方法を知っている人はいますか?
どうもありがとう!
レイチェル