S3 method for printing bootstrap_MET results

# S3 method for bmbstats_MET
print(x, ...)

Arguments

x

Object of class bmbstats_MET

...

Extra arguments. Not used

Examples

mean_MET <- bootstrap_MET( describe_data(rnorm(10, 100, 20)), estimator = "mean", SESOI_lower = 95, SESOI_upper = 105, alpha = 0.05 )
#> Bootstraping: 2000 resamples
#> Calculating confidence intervals...
#> Warning: extreme order statistics used as endpoints
#> Warning: boot::boot.ci returned error or NULL when estimating CIs for min estimator. Returning NAs for upper and lower CIs
#> Done!
mean_MET
#> Minimum effect tests for the `mean` estimator #> Bootstrap result: mean=92.375, 95% CI [86.738, 98.403] #> SESOI: [95, 105], alpha=0.05 #> #> Test p.value #> inferiority 0.1895000000 #> non-superiority 0.0004997501 #> equivalence 0.8105000000 #> non-inferiority 0.8105000000 #> superiority 1.0000000000 #> #> Final inference: Not-Higher
plot(mean_MET)