pVal: Permutation Test P-value

View source: R/pVal.R

pValR Documentation

Permutation Test P-value

Description

Calculate the p-value for a permutation test.

Usage

pVal(obs, null.dist)

Arguments

obs

observed value.

null.dist

vector of values from permutation null distribution.

Author(s)

Eric Archer eric.archer@noaa.gov

Examples

null.dist <- rnorm(1000)
obs <- rnorm(1, mean = 1)

plot(density(null.dist), xlim = range(c(obs, null.dist)), main = "")
abline(v = obs)
print(obs)
pVal(obs, null.dist)


EricArcher/swfscMisc documentation built on April 12, 2024, 4:21 a.m.