estjointpab: estjointpab

Usage Arguments Examples

View source: R/estjointpab.R

Usage

1
estjointpab(vec1, vec2)

Arguments

vec1
vec2

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
##---- 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 (vec1, vec2) 
{
    vec1 <- round(as.numeric(vec1))
    vec2 <- round(as.numeric(vec2))
    m <- length(vec1)
    n <- length(vec2)
    if (m != n) {
        print("the two input variables length differ")
        return(0)
    }
    else {
        vec <- paste(vec1, vec2)
        freq <- as.data.frame(table(vec))
        freq[, 2] <- freq[, 2]/m
        return(freq)
    }
  }

abx56/mrmr documentation built on May 30, 2019, 7:19 a.m.