Advertisement
mgaikema

Normal plot

Jul 23rd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
R 0.10 KB | None | 0 0
  1. # Plot a standard normal curve in R
  2. x = seq(-3.5,3.5,0.1)
  3.  
  4. pnorm(x)
  5.  
  6. plot(x,dnorm(x),type="l")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement