Skip to content

Commit

Permalink
Fix math typo in README (#87)
Browse files Browse the repository at this point in the history
Fix typo: `~` is replaced by `=` for logical variable `p`; also changed
the equations' ordering.
  • Loading branch information
yebai authored Sep 8, 2023
1 parent 8bcf530 commit f334bfb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ Let $p_i$ be the probability of germination on the $i$-th plate. Then, the model

$$
\begin{aligned}
r_i &\sim \text{Binomial}(p_i, n_i) \\
\text{logit}(p_i) &\sim \alpha_0 + \alpha_1 x_{1 i} + \alpha_2 x_{2i} + \alpha_{12} x_{1i} x_{2i} + b_{i} \\
b_i &\sim \text{Normal}(0, \tau)
b_i &\sim \text{Normal}(0, \tau) \\
\text{logit}(p_i) &= \alpha_0 + \alpha_1 x_{1 i} + \alpha_2 x_{2i} + \alpha_{12} x_{1i} x_{2i} + b_{i} \\
r_i &\sim \text{Binomial}(p_i, n_i)
\end{aligned}
$$

Expand Down

0 comments on commit f334bfb

Please sign in to comment.