Displaying 2 results from an estimated 2 matches for "unstadard".
Did you mean:
unstandard
2010 Oct 29
2
plot pdf
I want to plot the unstadardized version of a normal plot. Can you explain why that is not working?
Dev.set(1)
xcrit=-1.645
cord.x <- c(-3,seq(-3,xcrit,0.01),xcrit)
cord.y <- c(0,dnorm(seq(-3,xcrit,0.01)),0) # what does final 0 do here?
curve(dnorm(x,0,1),xlim=c(-3,3),main='Normal PDF&...
2010 Oct 31
1
R-help Digest, Vol 92, Issue 31
...--------
Message: 68
Date: Fri, 29 Oct 2010 22:18:20 +0000 (UTC)
From: mmstat@comcast.net
To: R-help@r-project.org
Subject: [R] plot pdf
Message-ID:
<45729106.238107.1288390700294.JavaMail.root@sz0115a.westchester.pa.mail.comcast.net>
Content-Type: text/plain
I want to plot the unstadardized version of a normal plot. Can you explain why
that is not working?
Dev.set(1)
xcrit=-1.645
cord.x <- c(-3,seq(-3,xcrit,0.01),xcrit)
cord.y <- c(0,dnorm(seq(-3,xcrit,0.01)),0)Â Â Â Â Â Â Â Â Â Â Â # what does
final 0 do here?
curve(dnorm(x,0,1),xlim=c(-3,3),main=...