swfscMisc (version 1.6.5)

pVal: 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

Eric Archer eric.archer@noaa.gov

Examples

Run this code
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)

Run the code above in your browser using DataLab