I am submitting the following program to create an editable graph. It creates an sge file but when I open it, it is empty. The accompanying png file is normal. It only seems to work if I get rid of the predpplot statement. However that doesn't give me the graph I want. Any help is appreciated.
ods listing sge=on;
ods graphics on;
proc probit data=all ln plots=all;
where group = "Site";
model Mortality/trials = tpah / d=gompertz lackfit;
predpplot noconf nogrid VREF(intersect)= 0.217 0.244 0.281 VREFLABELS=('85% UTL' '90% UTL' '95% UTL');
run;