format_tests {atable} | R Documentation |
Formats hypothesis test results
Description
The results of function two_sample_htest
and multi_sample_htest
must be formated before printing. format_tests
does this.
Usage
format_tests(x, ...)
## S3 method for class 'htest'
format_tests(x, format_tests.htest = NULL, ...)
## S3 method for class 'htest_with_effect_size'
format_tests(x, format_tests.htest_with_effect_size = NULL, ...)
## Default S3 method:
format_tests(x, ...)
Arguments
x |
An object. |
... |
Passed from and to other methods. |
format_tests.htest |
Either |
format_tests.htest_with_effect_size |
Analog to argument format_tests.htest |
Details
This function defines which test results are printed in the final table and how they are formated.
The format depends on the class x
. See section methods.
If you are not pleased with the current format you may alter these functions.
But you must keep the original output-format, see section Value.
Function check_format_tests
checks if the output of format_tests
is suitable for further processing.
Value
A non-empty data.frame with one row.
See also function check_format_tests
.
Methods (by class)
-
format_tests(htest)
: Defines how to format classhtest
. Returns a data.frame with 1 rows. Columnp
contains the p-value of thex
. -
format_tests(htest_with_effect_size)
: Defines how to format classhtest_with_effect_size
. Returns a data.frame with 1 rows. Columnp
contains the p-value of thex
. Columnstat
contains the teststatistic. ColumnEffect Size (CI)
contains a effect size and its 95% Confidence interval. -
format_tests(default)
: Tries to cast to data.frame with one row. Uses the names of the list as colnames.