Skip to content

Instantly share code, notes, and snippets.

@ymattu
Last active February 28, 2016 14:58
Show Gist options
  • Save ymattu/f897ce502d2808d668e2 to your computer and use it in GitHub Desktop.
Save ymattu/f897ce502d2808d668e2 to your computer and use it in GitHub Desktop.
data pdf;
do x = -3 to 3 by 0.1;
y = pdf("Normal", x);
output;
end;
run;
proc sgplot data=pdf noautolegend;
title "Normal Probability Density";
series x=x y=y;
xaxis grid label="x"; yaxis grid label="Normal PDF";
refline 0 / axis=y;
run;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment