time_expmat {pageRank} | R Documentation |
Generate timewise average gene expression.
time_expmat(time, expmat)
time |
(character) Time-annotation of samples. |
expmat |
(matrix) Gene expression matrix. |
(matrix) Time-wise average gene expression.
DING, HONGXU (hd2326@columbia.edu)
expmat <- matrix(rnorm(90), 10, 9, dimnames=list(LETTERS[1:10], 1:9)) time <- c(rep("T1", 3), rep("T2", 3), rep("T3", 3)) time_expmat(time, expmat)