Description Usage Arguments Value Algorithm Author(s) Examples
mu.AND
aggregates vectors of pairwise orderings created by
mu.GE
in a hierarchical fashion.
1 |
GE |
matrix each column of which corresponds to one variable anddescribes pairwise orderings |
frml |
formula describing the hierarchical structure of the variables |
mu.AND
returns a vector of the same length as the columns of
GE
, with information about pairwise orderings aggregated
according to frml
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | mu.AND <- function(GE, frml=NULL) {
<\dots>
if (is.null(frml)) {
<\dots>
GE <- sq.array(GE)
AND <- GE[,,1]^0
nNA <- AND[,1]*0
for (i in 1:dim(GE)[3]) {
nNA <- nNA + diag(GEi <- GE[,,i])
AND <- AND * (GEi + (1-GEi)*(1-t(GEi))) }
return(as.numeric(AND * ((c(nNA)%o%c(nNA))>0))) }
tkn <- unlist(strsplit(frml,""))
nok <- attr(regexpr("[0-9,()]+",frml),"match.length")
<\dots>
tmp <- matrix(0, dim(GE)[1]+1, <\dots>)
FstFree <- function(tmp) match(TRUE, tmp[1,]==0, nomatch=0)
level <- i <- 0
while ((i <- i+1) <= nok) {
switch( tkn[i],
"(" = level <- level + 1,
"," = next,
")" = { tmp[1, use <- (tmp[1,]==level)] <- 0
tmp[, FstFree(tmp)] <- c(level <- level-1, mu.AND(tmp[-1, use]))},
{ num <- as.numeric(substring(
frml,i,i<-i-1+regexpr("[,)]",substring(frml,i+1)))
<\dots>
tmp[,FstFree(tmp)] <- c(level, GE[, num]) } ) }
return(tmp[-1,1])
}
|
Knut M. Wittkowski kmw@rockefeller.edu, Tingting Song ttsong@gmail.com
1 2 3 4 5 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.