Learn R Programming

vows (version 0.3.1)

summary.lm.mp: Summarizing massively parallel linear model fits

Description

summary method for class "lm.mp".

Usage

## S3 method for class 'lm.mp':
summary(object, ...)

Arguments

object
an object of class lm.mp, ordinarily created by the function of that name or by lm4d.
...
not currently used.

Value

  • tstatmatrix of pointwise t-statistics for each coefficient in the linear model
  • pvaluematrix of the pointwise p-values for each coefficient in the linear model
  • aiccvector of pointwise corrected AIC

See Also

lm.mp

Examples

Run this code
Y = matrix(rnorm(6000), nrow=20)
X = rnorm(20)
t1 = lm.mp(Y, ~X)
st1 = summary(t1)

Run the code above in your browser using DataLab