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 57720b2 commit 9900656Copy full SHA for 9900656
doubleml/irm/qte.py
@@ -358,7 +358,7 @@ def summary(self):
358
A summary for the estimated causal effect after calling :meth:`fit`.
359
"""
360
col_names = ['coef', 'std err', 't', 'P>|t|']
361
- if np.isnan(self.coef).all():
+ if self.framework is None:
362
df_summary = pd.DataFrame(columns=col_names)
363
else:
364
summary_stats = np.transpose(np.vstack(
0 commit comments