Learn R Programming

JATSdecoder (version 1.2.0)

pCheck: pCheck

Description

Wrapper function for a standardStats data frame to check extracted and recalculated p-value for consistency

Usage

pCheck(stats, alpha = 0.05, criticalDif = 0.02, add = TRUE, warnings = TRUE)

Value

A data frame with error report on each entry in the result of a standard stats data frame.

Arguments

stats

Data frame. A data frame object of standard stats that was created by get.stats() or standardStats()

alpha

Numeric. Set the alpha level of tests.

criticalDif

Numeric. Defines the absolute threshold of absolute differences in extracted and recalculated p-value to be labeled as inconsistency.

add

Logical. If TRUE the result of Pcheck are added to the input data frame.

warnings

Logical. If FALSE warning messages are omitted.

Examples

Run this code
## Extract and check results from plain text input with get.stats(x,checkP=TRUE)
get.stats("some text with consistent or inconsistent statistical results: 
t(12)=3.4, p<.05 or t(12)=3.4, p>=.05",checkP=TRUE)
## Check standardStats extracted with get.stats(x)$standardStats
pCheck(get.stats("some text with consistent or inconsistent statistical results: 
t(12)=3.4, p<.05 or t(12)=3.4, p>=.05")$standardStats)

Run the code above in your browser using DataLab