Displaying 2 results from an estimated 2 matches for "ssl_z".
Did you mean:
sel_z
2010 Oct 29
2
plot pdf
...)
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')
polygon(cord.x,cord.y,col='orange')
savePlot(filename="c:\\ssl_z.emf",type="emf") #unable to create metafile? why?
x=seq(80,200,1)
plot(x,dnorm(x,140,15),type="l",ylab="Probability")
dev.set(4)
xcrit=135.9
cord.x <- c(80,seq(80,xcrit,.1),xcrit)
cord.y <- c(0,dnorm(seq(80,xcrit,...
2010 Oct 31
1
R-help Digest, Vol 92, Issue 31
...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')
polygon(cord.x,cord.y,col='orange')
savePlot(filename="c:\\ssl_z.emf",type="emf") Â Â Â Â Â Â Â Â Â #unable to
create metafile? why?Â
Â
x=seq(80,200,1)
plot(x,dnorm(x,140,15),type="l",ylab="Probability")
Â
dev.set(4)
xcrit=135.9
cord.x <- c(80,seq(80,xcrit,.1),xcrit)
cord.y <- c(0,dnor...