aov, lm, aovlist,
etc. objects.R/lm_effsize_ci.R
    lm_effsize_standardizer.RdThe difference between lm_effsize_ci and
lm_effsize_standardizer is that the former has more opinionated column
naming, while the latter doesn't. The latter can thus be more helpful in
writing a wrapper around this function.
lm_effsize_standardizer( object, effsize = "eta", partial = TRUE, conf.level = 0.95, ... )
| object | The linear model object (can be of class  | 
|---|---|
| effsize | Character describing the effect size to be displayed:  | 
| partial | Logical that decides if partial eta-squared or omega-squared
are returned (Default:  | 
| conf.level | Numeric specifying Level of confidence for the confidence
interval (Default:  | 
| ... | Ignored. | 
set.seed(123) groupedstats::lm_effsize_standardizer( object = stats::lm(formula = brainwt ~ vore, data = ggplot2::msleep), effsize = "eta", partial = FALSE, conf.level = 0.99 )#> # A tibble: 1 x 11 #> term sumsq df1 meansq F.value p.value df2 estimate conf.level conf.low #> <chr> <dbl> <int> <dbl> <dbl> <dbl> <int> <dbl> <dbl> <dbl> #> 1 vore 3.30 3 1.10 1.06 0.375 47 0.0633 0.99 0 #> # … with 1 more variable: conf.high <dbl>