File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -363,7 +363,7 @@ def compute_summary_statistics(
363
363
results : pd .DataFrame ,
364
364
central_measure : Union [Literal ["mean" , "median" ], None ] = None ,
365
365
width_of_range : float = 0.95 ,
366
- use_standard_error : bool = True ,
366
+ use_standard_error : bool = False ,
367
367
only_central : bool = False ,
368
368
collapse_columns : bool = False ,
369
369
) -> pd .DataFrame :
@@ -414,7 +414,6 @@ def compute_summary_statistics(
414
414
stats ["lower" ] = stats ['central' ] - z_value * std_error
415
415
stats ["upper" ] = stats ['central' ] + z_value * std_error
416
416
417
- # summary = pd.concat(stats, axis=1).stack(level=1) # move cause from column to index
418
417
summary = pd .concat (stats , axis = 1 )
419
418
summary .columns = summary .columns .swaplevel (1 , 0 )
420
419
summary .columns .names = ['draw' , 'stat' ]
You can’t perform that action at this time.
0 commit comments