File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ def all_ses(self):
106
106
@property
107
107
def t_stats (self ):
108
108
"""
109
- t-statistics for the causal parameter(s) (shape (``n_thetas``, )).
109
+ t-statistics for the causal parameter(s) (shape (``n_thetas``,)).
110
110
"""
111
111
return self ._thetas / self ._ses
112
112
@@ -120,7 +120,7 @@ def all_t_stats(self):
120
120
@property
121
121
def pvals (self ):
122
122
"""
123
- p-values for the causal parameter(s) (shape (``n_thetas``, )).
123
+ p-values for the causal parameter(s) (shape (``n_thetas``,)).
124
124
"""
125
125
# aggregate p-values according to Definition 4.2 https://arxiv.org/abs/1712.04802
126
126
pvals = np .median (self .all_pvals , axis = 1 )
@@ -165,7 +165,8 @@ def boot_method(self):
165
165
@property
166
166
def boot_t_stat (self ):
167
167
"""
168
- Bootstrapped t-statistics for the causal parameter(s) after calling :meth:`bootstrap`.
168
+ Bootstrapped t-statistics for the causal parameter(s) after calling :meth:`bootstrap`
169
+ (shape (``n_rep_boot``, ``n_thetas``, ``n_rep``)).
169
170
"""
170
171
return self ._boot_t_stat
171
172
You can’t perform that action at this time.
0 commit comments