Skip to content

Commit cc4a090

Browse files
committed
adapt docu to work with the score mixin class(es)
1 parent 92b6f1e commit cc4a090

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/guide/resampling.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ stored in the attributes ``psi_a`` and ``psi_b``.
110110
.. ipython:: python
111111
112112
dml_plr_obj.fit();
113-
print(dml_plr_obj.psi_a[:5])
114-
print(dml_plr_obj.psi_b[:5])
113+
print(dml_plr_obj.psi_elements['psi_a'][:5])
114+
print(dml_plr_obj.psi_elements['psi_b'][:5])
115115
116116
.. tabbed:: R
117117

@@ -161,8 +161,8 @@ The third dimension refers to the treatment variable and becomes non-singleton i
161161
.. ipython:: python
162162
163163
dml_plr_obj.fit();
164-
print(dml_plr_obj.psi_a[:5, :, 0])
165-
print(dml_plr_obj.psi_b[:5, :, 0])
164+
print(dml_plr_obj.psi_elements['psi_a'][:5, :, 0])
165+
print(dml_plr_obj.psi_elements['psi_b'][:5, :, 0])
166166
167167
.. tabbed:: R
168168

0 commit comments

Comments
 (0)