R/collapse_W.R

Defines functions collapse_W

Documented in collapse_W

collapse_W <- function(W,listItems,newNames)
  {
    if(missing(newNames)) newNames <- paste("collapsedEffect",1:length(listItems),sep="")
    Wtmp1 <- W[,-unlist(listItems)]
    collapsed <- lapply(listItems, function(x) rowSums(W[,x]))
    Wtmp2 <- matrix(unlist(collapsed),ncol=length(collapsed))
    Wout <- cbind(Wtmp1,Wtmp2)
    colnames(Wout) <- c(colnames(Wtmp1),newNames)
    Wout
  }

Try the eRm package in your browser

Any scripts or data that you put into this service are public.

eRm documentation built on March 19, 2024, 3:06 a.m.