You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the exercise 13 of chapter 3 was said "create vector, esp, from a N(0, 0.25) distribution i.e. a normal distribution with mean zero and variance 0.25". So, the standard deviation is equal to 0.5, and in solution was written "esp = rnorm(100, 0, 0.25)", but in it should be written "esp = rnorm(100, 0, 0.5)", because "rnorm" function get standard deviation as its argument.
The text was updated successfully, but these errors were encountered:
Thanks, @shayan-mj, for pointing this out. I verified that rnorm() does take standard deviation as its argument so instead of 0.25, the argument should be sqrt(0.25) = 0.5. I will fix this promptly.
As reported by @shayan-mj in #3
The text was updated successfully, but these errors were encountered: