powered by
Performs t-tests for paired data row by row.
row.ttest.statp(mat)
Matrix with data to be tested (for example, log-ratios in microarray experiments).
Vector with t-test statistics.
This function is much faster than employing apply with FUN=t.test.
# NOT RUN { ## The function is currently defined as function(mat){ m<-rowMeans(mat,na.rm=TRUE) sd<-rowSds(mat,na.rm=TRUE) tstat<-m/(sd*sqrt(1/dim(mat)[2])) return(tstat)} # }
Run the code above in your browser using DataLab