Closed benslack19 closed 2 years ago
Hi, I think you said that the error from lecture 9 is fixed, but I'm wondering if an error is still there on slide 75 and 76?
For example on slide 75, there's this code where link refers to model m2:
link
m2
# simulate as if all apps from women p_G1 <- link(m2,data=list( D=rep(1:6,times=apps_per_dept), N=rep(1,total_apps), G=rep(1,total_apps)))
But in the lecture code, the model now refers to mGD.
mGD
# simulate as if all apps from women p_G1 <- link(mGD,data=list( D=rep(1:6,times=apps_per_dept), N=rep(1,total_apps), G=rep(1,total_apps)))
mGD is right. See https://github.com/rmcelreath/stat_rethinking_2022/commit/2542781137bc9033294b651132dcf666e1d8112f
Ok thanks. To confirm, the slide still needs to be correctedl?
Hi, I think you said that the error from lecture 9 is fixed, but I'm wondering if an error is still there on slide 75 and 76?
For example on slide 75, there's this code where
link
refers to modelm2
:But in the lecture code, the model now refers to
mGD
.