Skip to content

Instantly share code, notes, and snippets.

@TexAgg
Last active March 30, 2016 00:09
Show Gist options
  • Save TexAgg/8566f3d1b46e526f8971c71dd1f47416 to your computer and use it in GitHub Desktop.
Save TexAgg/8566f3d1b46e526f8971c71dd1f47416 to your computer and use it in GitHub Desktop.
Plot a standard normal curve in R
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