remove_ns {rstatix} | R Documentation |
Remove Non-Significant from Statistical Tests
Description
Filter out non-significant (NS) p-values from a statistical test. Can detect automatically p-value columns
Usage
remove_ns(stat.test, col = NULL, signif.cutoff = 0.05)
Arguments
stat.test |
statistical test results returned by |
col |
(optional) character specifying the column containing the p-value
or the significance information, to be used for the filtering step.
Possible values include: |
signif.cutoff |
the significance cutoff; default is 0.05. Significance
is declared at |
Value
a data frame
Examples
# Statistical test
stat.test <- PlantGrowth %>% wilcox_test(weight ~ group)
# Remove ns: automatic detection of p-value columns
stat.test %>% remove_ns()
# Remove ns by the column p
stat.test %>% remove_ns(col ="p")
[Package rstatix version 0.7.2 Index]