Hello everyone, Thank you for the quick response. I tested the code SEVERITY, but it took too long and I ended up canceling it. Upon checking the documentation, I found an alternative called HPSEVERITY. This code worked to a certain extent, but two errors occurred: one regarding Gamma conversion and another related to Java. Do you have any suggestions to avoid these errors? My code: proc HPSEVERITY data=WORK.TEMP
outest=WORK.myests
criteria=KS;
dist _ALL_;
loss y;
run; LOG: 72
73 ods graphics on;
74
75 proc HPSEVERITY data=WORK.TEMP
76 outest=WORK.myests
77 criteria=KS;
78 dist _ALL_;
79 loss comprometido_2;
80 run;
NOTE: The HPSEVERITY procedure is executing in single-machine mode.
NOTE: A finite difference approximation is used for the derivative of the 'LOGPDF' function.
NOTE: A finite difference approximation is used for the derivative of the 'LOGCDF' function.
NOTE: A finite difference approximation is used for the derivative of the 'LOGSDF' function.
3 The SAS System 10:59 Friday, April 12, 2024
NOTE: A finite difference approximation is used for the derivative of the 'LOGPDF' function.
NOTE: A finite difference approximation is used for the derivative of the 'LOGCDF' function.
NOTE: A finite difference approximation is used for the derivative of the 'LOGSDF' function.
ERROR: Convergence Status for Gamma: Did not converge.
WARNING: Convergence Status for Burr: Exceeded limit on iterations.
WARNING: This graph has too many graphical elements. You may not be able to get any vector graphics output and in that case, you
can set your output format to an image type.
ERROR: Java virtual machine exception. java.lang.OutOfMemoryError: Java heap space. I wasn't familiar with GENMOD, so I will start reading the documentation now and check if it is possible to apply it to my study.
... View more