pvalue2stars: Significance stars

View source: R/pvalue2stars.R

pvalue2starsR Documentation

Significance stars

Description

Get stars indicating the magnitude of significance of a P-value.

Usage

pvalue2stars(x, ns = "")

pvalues2stars(x, ns = "")

Arguments

x

Numeric value or numeric vector, typically a P-value from a statistical test.

ns

A character string specifying how insignificant results should be marked. Empty string by default.

Details

While the function pvalue2stars accepts only a single value, the function pvalues2stars is a wrapper calling pvalue2stars for a vector. The range of x is not checked. However, a check is done, if x is numeric at all.

Value

String(s) of stars or points.

Author(s)

Markus Boenn

Examples

x <- runif(1, 0,1)
pvalue2stars(x)

x <- 0.5
pvalue2stars(x, ns="not signif")

x <- c(0.0023, 0.5, 0.04)
pvalues2stars(x, ns="not signif")


fitteR documentation built on March 18, 2022, 7:20 p.m.

Related to pvalue2stars in fitteR...