Skip to contents

Returns a data frame describing all available p-value formatting styles.

Usage

list_p_format_styles()

Value

A data frame with columns: style, digits, leading.zero, min.threshold, use.scientific, description.

Examples

list_p_format_styles()
#>        style digits leading.zero min.threshold use.scientific
#> 1    default      2         TRUE            NA           TRUE
#> 2        apa      3        FALSE         1e-03          FALSE
#> 3       nejm      3         TRUE         1e-03          FALSE
#> 4     lancet      4         TRUE         1e-04          FALSE
#> 5        ama      3        FALSE         1e-03          FALSE
#> 6   graphpad      4         TRUE         1e-04          FALSE
#> 7 scientific      2         TRUE            NA           TRUE
#>                                description
#> 1   Current behavior (backward compatible)
#> 2  APA Style (Psychology, Social Sciences)
#> 3          New England Journal of Medicine
#> 4                               The Lancet
#> 5             American Medical Association
#> 6                     GraphPad Prism Style
#> 7 Scientific notation (for GWAS, genomics)