interpret_p: Standalone P-Value Interpreter

View source: R/interpret_p.R

interpret_pR Documentation

Standalone P-Value Interpreter

Description

Standalone P-Value Interpreter

Usage

interpret_p(p, alpha = 0.05, context = NULL)

Arguments

p

A numeric p-value between 0 and 1

alpha

Significance level. Default 0.05

context

Optional string describing the test context

Value

An object of class statease_pvalue containing the p-value interpretation. Use print() to display the report.

Examples

result <- interpret_p(0.03)
print(result)

result2 <- interpret_p(0.12, alpha = 0.05, context = "treatment vs control")
print(result2)

statease documentation built on June 7, 2026, 5:06 p.m.