This function takes a `test_object` that contains the result of a statistical test and returns the main coefficient, estimate, or test statistic as a numeric value. It supports various tests such as t-tests, ANOVAs, regressions, and correlations.
get_strength_from_test(test_object)
A named numeric value indicating the strength of the result. The type and meaning depend on the test used:
Effect size and direction of predictors in regression
Correlation strength and direction
Difference in group means
Test statistic measuring group difference or association
Ratio of variances across groups
Estimated success rate in the sample
No interpretable strength measure available
An object containing a statistical test result and metadata, expected to have methods `get_result()` and `get_test()`.