Hello everyone,
I am using the following sample code to generate my cure plots.
proc genmod data=db.dir5lane2sort;
class ident;
MODEL tot=logaadtn loglength logiri/ dist=NEGBIN link=log;
assess var=(logiri) /seed=603708000;
run;
However, as you are much well aware that this result is paired with simulated paths. However, I want to generate this something like:

Is there a way to do it with PROC GEN MOD's options, or do I have to use another code?