ThinkBayes2
ThinkBayes2 copied to clipboard
Changed logistic model code to match description
- In the final exercise, in the exponent of the exponential, the
parameter
a
is multiplying the other term - However, in the accompanying code, the parameter
a
is dividing it - The accompanying Wikipedia link about Item Response Theory also uses
the convention of multiplying in the factor
a
- Easy fix: in the code switch
a
froma = 100
toa = 1 / 100
, and switch it to multiplication in the assignment tox
- Code change:
- Closes AllenDowney/ThinkBayes2#49