Our company recently converted from Enterprise Guide to Viya. We use PROC LIFEREG for our model fitting processes and noticed that we get different output in Viya than we did in Enterprise Guide with the same data and parameter specifications. Were there any changes to PROC LIFEREG in Viya that would cause these differences? Below is an example of the code we're running: proc lifereg data=paid_trended outest=outdata; model total_paid*censor(0)= /d=gamma; where total_paid > 1600; output out=a p=median std=s; run;
... View more