For delta_p calculation, try the following code:
proc logistic data=&data ;
model &depvar (event="1") = ... ;
ods output parameterestimates=_parms (where=(variable ne "Intercept"));
run;
proc sql noprint; select sum(&depvar)/count(*) into :prior from &data; quit;
data delta_p;
set _parms; retain P0 &prior;
L0=log(P0/(1-P0));
L1=L0+estimate;
P1=exp(L1)/(1+exp(L1));
Delta_P=P1-P0; drop L0 L1;
run;
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.