Skip to content

Commit 1c7b7c4

Browse files
authored
Merge pull request #89 from DoubleML/m-iivm-docu
fix typos in iivm model equations
2 parents cb0d326 + 7608e8b commit 1c7b7c4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doubleml/double_ml_iivm.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class DoubleMLIIVM(DoubleML):
8383
8484
.. math::
8585
86-
Y = g_0(D, X) + \\zeta, & &\\mathbb{E}(\\zeta | Z, X) = 0,
86+
Y = \\ell_0(D, X) + \\zeta, & &\\mathbb{E}(\\zeta | Z, X) = 0,
8787
8888
Z = m_0(X) + V, & &\\mathbb{E}(V | X) = 0,
8989
@@ -95,17 +95,17 @@ class DoubleMLIIVM(DoubleML):
9595
9696
.. math::
9797
98-
Y = g_0(D, X) + \\zeta, & &\\mathbb{E}(\\zeta | Z, X) = 0,
98+
Y = g_0(Z, X) + \\nu, & &\\mathbb{E}(\\nu| Z, X) = 0,
9999
100-
D = r_0(D, X) + U, & &\\mathbb{E}(U | Z, X) = 0,
100+
D = r_0(Z, X) + U, & &\\mathbb{E}(U | Z, X) = 0,
101101
102102
Z = m_0(X) + V, & &\\mathbb{E}(V | X) = 0.
103103
104104
The target parameter of interest in this model is the local average treatment effect (LATE),
105105
106106
.. math::
107107
108-
\\theta_0 = \\frac{\\mathbb{E}[g(1, X)] - \\mathbb{E}[g(0,X)]}{\\mathbb{E}[r(1, X)] - \\mathbb{E}[r(0,X)]}.
108+
\\theta_0 = \\frac{\\mathbb{E}[g_0(1, X)] - \\mathbb{E}[g_0(0,X)]}{\\mathbb{E}[r_0(1, X)] - \\mathbb{E}[r_0(0,X)]}.
109109
"""
110110
def __init__(self,
111111
obj_dml_data,

0 commit comments

Comments
 (0)