What do you mean by "normal probability plot of deviance"?
@Rick_SAS have written many blog about it. Check PDF() function.
data have; do q=-3 to 3 by 0.1; d=pdf('normal',q);output; end; run; proc sgplot data=have; series x=q y=d; run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.