getP: An internal function for getting empirical p values

Description Usage Arguments Value Examples

View source: R/getP.R

Description

Simulates p values.

Usage

1
getP(ndads, mm, vv, tau2, nperms, nsims, nbins)

Arguments

ndads

a (non-empty) numeric value indicating the number of dads.

mm

a (non-empty) numeric value indicating the mean number of offspring per dad per bin (normal dist). mm must be less than vv.

vv

a (non-empty) numeric value indicating the variance in offspring per dad per bin (normal dist). vv must be greater than mm.

tau2

a (non-empty) numeric value indicating the dad effect (narrow-sense heritability ~ tau2/(tau2+(pi/sqrt(3))^2)).

nperms

a (non-empty) numeric value indicating the number of bootstrap permutations to use for caluclating a p value.

nsims

a (non-empty) numeric value indicating the number of simulations to run per parameter combination.

nbins

a (non-empty) numeric value indicating the number of bins, data are pooled before analysis.

Value

Returns a vector of simulated p values. The list contains:

Examples

1
2
3
4
5
6
7
8
	ndads <- c(9,18)
	mm <- 4.629634
	vv <- 6.31339
	tau2 <- c(0,0.5)
	nperms <- 2
	nsims <- 2
	nbins <- 3
	getP(ndads, mm, vv, tau2, nperms, nsims, nbins)

multiDimBio documentation built on April 14, 2020, 5:41 p.m.