OpasnetUtils/Tapply
Moderator:Nobody (see all) Click here to sign up. |
This page is a stub. You may improve it into a full page. |
Upload data
|
Description
tapply of ovariables applies a function to each cell of a ragged array, that is to each (non-empty) group of values given by a unique combination of the levels of certain factors.
Parameters
- X an ovariable
- (other parameters are as in generic tapply)
Code
# TAPPLY ########### tapply of ovariables applies a function to each cell of a ragged array, that is to each (non-empty) group of ############ values given by a unique combination of the levels of certain factors. ### parameters (other parameters are as in generic tapply): ### X an ovariable temp <- setMethod(f = "tapply", signature = signature(X = "ovariable"), definition = function(X, INDEX, FUN = NULL, ..., simplify = TRUE) { out <- as.data.frame(as.table(tapply(X@output$Result, INDEX, FUN, ..., simplify = TRUE))) colnames(out)[colnames(out) == "Freq"] <- "Result" X@output <- out return(X) } ) |