correctly_intervalized_estimates: Check if confidence intervals of parameter estimates contain...

Usage Arguments Examples

Usage

1
correctly_intervalized_estimates(background, SE, Parms)

Arguments

background
SE
Parms

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (background, SE, Parms) 
{
    CI95 <- SE * 2
    up_estimates <- background + CI95
    down_estimates <- background - CI95
    return(down_estimates < c(Parms) & c(Parms) < up_estimates)
  }

lkshrsch/gLVInterNetworks documentation built on May 21, 2019, 7:33 a.m.