We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92b6f1e commit cc4a090Copy full SHA for cc4a090
doc/guide/resampling.rst
@@ -110,8 +110,8 @@ stored in the attributes ``psi_a`` and ``psi_b``.
110
.. ipython:: python
111
112
dml_plr_obj.fit();
113
- print(dml_plr_obj.psi_a[:5])
114
- print(dml_plr_obj.psi_b[:5])
+ print(dml_plr_obj.psi_elements['psi_a'][:5])
+ print(dml_plr_obj.psi_elements['psi_b'][:5])
115
116
.. tabbed:: R
117
@@ -161,8 +161,8 @@ The third dimension refers to the treatment variable and becomes non-singleton i
161
162
163
164
- print(dml_plr_obj.psi_a[:5, :, 0])
165
- print(dml_plr_obj.psi_b[:5, :, 0])
+ print(dml_plr_obj.psi_elements['psi_a'][:5, :, 0])
+ print(dml_plr_obj.psi_elements['psi_b'][:5, :, 0])
166
167
168
0 commit comments