Created
September 15, 2017 06:44
-
-
Save heiwais25/d10c19a3a2784f80a913d5eb4ad2e033 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
dnorm(0, 0, 1) = 0.3989423 # PDF value at 0 | |
x = seq(from = -5, to = 5, by = .1) # make x points to draw distribution | |
plot(x, dnorm(x, 0, 1), type="l") # connect points by line in the plot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment