Learn R Programming

leapp (version 1.1)

Pvalue: Calculate statistics and p-values

Description

Calculate F-statistics, t-statistics and corresponding p-values given multiple regression models under the null and alternative hypotheses.

Usage

Pvalue(dat, mod, mod0)

Arguments

dat
An N genes by n arrays matrix of expression data
mod
An n by (s+1) design matrix under the full model (alternative), the first column is the primary predictor, s>=0 and the rest of the columns are additional covariates
mod0
An n by s design matrix under the null hypothesis, s>=0, should be the same as the 2:(s+1) columns of mod. If s=0, please set mod0 = NULL

Value

  • pAn N by 1 vector of p-values one for each row of data.
  • tstatAn N by 1 vector of t-statistics for primary parameters.
  • fstatAn N by 1 vector of F-statistics for primary parameters.
  • coefAn N by (s+1) matrix of coefficients with respect to design matrix mod under the full model.

Examples

Run this code
data(simdat)
      n = ncol(simdat$data)
      mod = cbind(simdat$g, rep(1,n))
      mod0 = cbind(rep(1,n))
      result = Pvalue(dimdat$data,mod = mod, mod0 = mod0)

Run the code above in your browser using DataLab