Last active
February 28, 2016 14:58
-
-
Save ymattu/f897ce502d2808d668e2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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