search for: inpit

Displaying 1 result from an estimated 1 matches for "inpit".

Did you mean: init
2009 Jun 08
1
Interpreting R -results for Bivariate Normal
...w that this forum is not for homework but I am trying to interpret R output code. I was just wondering if someone might be able to help. I have been given the following. For (X1,X2) distributed bivariate normal with parameters mu1 = 5.8 mu2 = 5.3 sd1 = sd2 = 0.2 and p = 0.6 The r-code and inpit/output are as follows input m <- 5.3 + 0.6*(6.3 - 5.8) s <- sqrt(0.2^2*(1-0.6^2)) q <- seq(5.12,6.08,0.16) print(rbind(q,pnorm(mean=m,sd=sd=s,q=q))) output q 5.1200 5.280 5.44 5.6 5.76 5.92 6.1 0.0013 0.023 0.16 0.5 0.84 0.98 1 I have been asked t...