Skip to content

Commit

Permalink
Fix formula bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinstansbury committed Dec 21, 2023
1 parent f98d00d commit 417ae29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lecture 05 - Elemental Confounds.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2326,8 +2326,8 @@
"X &\\sim \\text{Bernoulli}(0.5) \\\\\n",
"Z &\\sim \\text{Bernoulli}(p*) \\\\\n",
"Y &\\sim \\text{Bernoulli}(q*) \\\\\n",
"p^* &= 0.9 \\times X + 0.1 \\times X \\\\\n",
"q^* &= 0.9 \\times Z + 0.1 \\times Z \\\\\n",
"p^* &= 0.9 \\times X + 0.1 \\times (1 - X) \\\\\n",
"q^* &= 0.9 \\times Z + 0.1 \\times (1 - Z) \\\\\n",
"\\end{align*}\n",
"$$"
]
Expand Down

0 comments on commit 417ae29

Please sign in to comment.