format_p_values_at | R Documentation |
Combines mutate_at()
and as_formatted_p_value()
format_p_values_at( .tbl, .vars, decimal_places = 3, prefix = "p", less_than_cutoff = 0.001, remove_trailing_zeroes = T, alpha = 0.05, ns_replacement = NULL )
.tbl |
A data frame |
.vars |
A vars() list of symbolic columns |
decimal_places |
Decimal places to display |
prefix |
Prefix to prepend (default "p=") |
less_than_cutoff |
Cut-off for small p values. Values smaller than this will be displayed like "p<..." |
remove_trailing_zeroes |
If the required decimal places are less than decimal places, should resulting trailing zeros be removed? |
alpha |
Cut-off for assuming significance, usually 0.05 |
ns_replacement |
If p value is not significant (is > alpha), it will be replace by this string (e.g. "n.s.") If NULL (default), no replacement is performed. Vectorised (in parallel) over x, prefix, less_than_cutoff, alpha and ns_replacement. |
Value of mutate_at
format_numbers_at
library(tibble) library(magrittr) library(dplyr) tibble(p=c(0.05, 0.0001)) %>% format_numbers_at(vars(p))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.