Learn R Programming

alakazam (version 1.2.1)

stoufferMeta: Weighted meta-analysis of p-values via Stouffer's method

Description

stoufferMeta combines multiple weighted p-values into a meta-analysis p-value using Stouffer's Z-score method.

Usage

stoufferMeta(p, w = NULL)

Value

A named numeric vector with the combined Z-score and p-value in the form

c(Z, pvalue).

Arguments

p

numeric vector of p-values.

w

numeric vector of weights.

Examples

Run this code
# Define p-value and weight vectors
p <- c(0.1, 0.05, 0.3)
w <- c(5, 10, 1)

# Unweighted
stoufferMeta(p)

# Weighted
stoufferMeta(p, w)

Run the code above in your browser using DataLab