interaction_compare: Compare interaction parameters

Usage Arguments Examples

Usage

1

Arguments

a
b

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
##---- 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 (a, b) 
{
    if (a > 0 && b > 0) {
        return(TRUE)
    }
    else if (a == 0 && b == 0) {
        return(TRUE)
    }
    else if (a < 0 && b < 0) {
        return(TRUE)
    }
    else {
        return(FALSE)
    }
  }

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