atable (version 0.1.0)

format_tests: 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 htest format_tests(x)

# S3 method for htest_with_effect_size format_tests(x)

# S3 method for default format_tests(x)

Arguments

x

An object.

Value

A non-empty data.frame with one row. See also function check_format_tests.

Methods (by class)

  • htest: Defines how to format class htest. Returns a data.frame with 1 rows. Column p contains the p-value of the x.

  • htest_with_effect_size: Defines how to format class htest_with_effect_size. Returns a data.frame with 1 rows. Column p contains the p-value of the x. Column stat contains the teststatistic. Column Effect Size (CI) contains a effect size and its 95% Confidence interval.

  • default: Tries to cast to data.frame with one row. Uses the names of the list as colnames.

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.