Last active
March 30, 2016 00:09
-
-
Save TexAgg/8566f3d1b46e526f8971c71dd1f47416 to your computer and use it in GitHub Desktop.
Plot a standard normal curve in R
This file contains 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
x = seq(-3.5,3.5,0.1) | |
pnorm(x) | |
plot(x,dnorm(x),type="l") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment