[R] Passing values to a function when using apply

Abhishek Pratap abhishek.vit at gmail.com
Tue Apr 27 20:10:45 CEST 2010


Hi All

Slightly lost on how should I pass values to a function I am calling
using apply.


apply( veh_drg_animal1[ , c("readCount","gene_length")] ,1,  stats() )

here stats is a custom function where I want to pass two parameters
from data frame as shown and a third argument which is constant per
instance of apply.


stats <- function ( arg1,agr2,agr3) {
## computation using three parameters
}



More information about the R-help mailing list