getPvalue {MBQN} | R Documentation |
Calculates Pitman-Morgan variance test on two matrices
getPvalue(mtx1, mtx2)
mtx1 |
Matrix with samples in columns and features in rows |
mtx2 |
Matrix with samples in columns and features in rows |
Data frame with p values and statistics
set.seed(30) n <- 20 m <- 20 mtx1 <- matrix(rnorm(m * n), m, n) mtx2 <- mbqn(mtx1, FUN = "mean") getPvalue(mtx1, mtx2)