From f334bfbab3559f552bc5b5c8b243b26d03ab9511 Mon Sep 17 00:00:00 2001 From: Hong Ge <3279477+yebai@users.noreply.github.com> Date: Fri, 8 Sep 2023 07:31:02 +0100 Subject: [PATCH] Fix math typo in README (#87) Fix typo: `~` is replaced by `=` for logical variable `p`; also changed the equations' ordering. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index addae8d7c..bd0ee139f 100644 --- a/README.md +++ b/README.md @@ -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} $$